Remove section separator comments

Richard Feldman created

Change summary

crates/language_models/src/provider/openai_subscribed.rs | 9 ---------
1 file changed, 9 deletions(-)

Detailed changes

crates/language_models/src/provider/openai_subscribed.rs 🔗

@@ -206,7 +206,6 @@ impl LanguageModelProvider for OpenAiSubscribedProvider {
     }
 }
 
-// --- Models available through the Codex backend ---
 //
 // The ChatGPT Subscription provider routes requests to chatgpt.com/backend-api/codex,
 // which only supports a subset of OpenAI models. This list is maintained separately
@@ -311,8 +310,6 @@ impl ChatGptModel {
     }
 }
 
-// --- Language model ---
-
 struct OpenAiSubscribedLanguageModel {
     id: LanguageModelId,
     model: ChatGptModel,
@@ -465,8 +462,6 @@ impl LanguageModel for OpenAiSubscribedLanguageModel {
     }
 }
 
-// --- Credential refresh ---
-
 async fn get_fresh_credentials(
     state: &gpui::WeakEntity<State>,
     http_client: &Arc<dyn HttpClient>,
@@ -557,8 +552,6 @@ async fn get_fresh_credentials(
         .map_err(|e| LanguageModelCompletionError::Other(anyhow::anyhow!("{e}")))
 }
 
-// --- OAuth PKCE flow ---
-
 #[derive(Deserialize)]
 struct TokenResponse {
     access_token: String,
@@ -928,8 +921,6 @@ fn do_sign_out(state: &gpui::WeakEntity<State>, cx: &mut App) {
     .detach();
 }
 
-// --- Configuration view ---
-
 struct ConfigurationView {
     state: Entity<State>,
     http_client: Arc<dyn HttpClient>,