This PR removes the `CloudModel` enum, as it is no longer needed after #31316. Release Notes: - N/A
110 lines
3.2 KiB
Rust
110 lines
3.2 KiB
Rust
use std::fmt;
|
|
use std::sync::Arc;
|
|
|
|
use anyhow::Result;
|
|
use client::Client;
|
|
use gpui::{
|
|
App, AppContext as _, AsyncApp, Context, Entity, EventEmitter, Global, ReadGlobal as _,
|
|
};
|
|
use proto::{Plan, TypedEnvelope};
|
|
use smol::lock::{RwLock, RwLockUpgradableReadGuard, RwLockWriteGuard};
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub struct PaymentRequiredError;
|
|
|
|
impl fmt::Display for PaymentRequiredError {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(
|
|
f,
|
|
"Payment required to use this language model. Please upgrade your account."
|
|
)
|
|
}
|
|
}
|
|
|
|
#[derive(Error, Debug)]
|
|
pub struct ModelRequestLimitReachedError {
|
|
pub plan: Plan,
|
|
}
|
|
|
|
impl fmt::Display for ModelRequestLimitReachedError {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
let message = match self.plan {
|
|
Plan::Free => "Model request limit reached. Upgrade to Zed Pro for more requests.",
|
|
Plan::ZedPro => {
|
|
"Model request limit reached. Upgrade to usage-based billing for more requests."
|
|
}
|
|
Plan::ZedProTrial => {
|
|
"Model request limit reached. Upgrade to Zed Pro for more requests."
|
|
}
|
|
};
|
|
|
|
write!(f, "{message}")
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
pub struct LlmApiToken(Arc<RwLock<Option<String>>>);
|
|
|
|
impl LlmApiToken {
|
|
pub async fn acquire(&self, client: &Arc<Client>) -> Result<String> {
|
|
let lock = self.0.upgradable_read().await;
|
|
if let Some(token) = lock.as_ref() {
|
|
Ok(token.to_string())
|
|
} else {
|
|
Self::fetch(RwLockUpgradableReadGuard::upgrade(lock).await, client).await
|
|
}
|
|
}
|
|
|
|
pub async fn refresh(&self, client: &Arc<Client>) -> Result<String> {
|
|
Self::fetch(self.0.write().await, client).await
|
|
}
|
|
|
|
async fn fetch(
|
|
mut lock: RwLockWriteGuard<'_, Option<String>>,
|
|
client: &Arc<Client>,
|
|
) -> Result<String> {
|
|
let response = client.request(proto::GetLlmToken {}).await?;
|
|
*lock = Some(response.token.clone());
|
|
Ok(response.token.clone())
|
|
}
|
|
}
|
|
|
|
struct GlobalRefreshLlmTokenListener(Entity<RefreshLlmTokenListener>);
|
|
|
|
impl Global for GlobalRefreshLlmTokenListener {}
|
|
|
|
pub struct RefreshLlmTokenEvent;
|
|
|
|
pub struct RefreshLlmTokenListener {
|
|
_llm_token_subscription: client::Subscription,
|
|
}
|
|
|
|
impl EventEmitter<RefreshLlmTokenEvent> for RefreshLlmTokenListener {}
|
|
|
|
impl RefreshLlmTokenListener {
|
|
pub fn register(client: Arc<Client>, cx: &mut App) {
|
|
let listener = cx.new(|cx| RefreshLlmTokenListener::new(client, cx));
|
|
cx.set_global(GlobalRefreshLlmTokenListener(listener));
|
|
}
|
|
|
|
pub fn global(cx: &App) -> Entity<Self> {
|
|
GlobalRefreshLlmTokenListener::global(cx).0.clone()
|
|
}
|
|
|
|
fn new(client: Arc<Client>, cx: &mut Context<Self>) -> Self {
|
|
Self {
|
|
_llm_token_subscription: client
|
|
.add_message_handler(cx.weak_entity(), Self::handle_refresh_llm_token),
|
|
}
|
|
}
|
|
|
|
async fn handle_refresh_llm_token(
|
|
this: Entity<Self>,
|
|
_: TypedEnvelope<proto::RefreshLlmToken>,
|
|
mut cx: AsyncApp,
|
|
) -> Result<()> {
|
|
this.update(&mut cx, |_this, cx| cx.emit(RefreshLlmTokenEvent))
|
|
}
|
|
}
|