collab: Remove LLM service (#28728)
This PR removes the LLM service from collab, as it has been moved to Cloudflare. Release Notes: - N/A
This commit is contained in:
parent
12b012eab3
commit
fc1252b0cd
17 changed files with 8 additions and 2315 deletions
|
@ -253,7 +253,6 @@ impl Config {
|
|||
pub enum ServiceMode {
|
||||
Api,
|
||||
Collab,
|
||||
Llm,
|
||||
All,
|
||||
}
|
||||
|
||||
|
@ -265,10 +264,6 @@ impl ServiceMode {
|
|||
pub fn is_api(&self) -> bool {
|
||||
matches!(self, Self::Api | Self::All)
|
||||
}
|
||||
|
||||
pub fn is_llm(&self) -> bool {
|
||||
matches!(self, Self::Llm | Self::All)
|
||||
}
|
||||
}
|
||||
|
||||
pub struct AppState {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue