Clean up some comments

Richard Feldman created

Change summary

crates/extension_api/wit/since_v0.8.0/extension.wit    | 4 ----
crates/extension_api/wit/since_v0.8.0/llm-provider.wit | 8 --------
crates/extension_host/src/wasm_host/wit.rs             | 4 ----
3 files changed, 16 deletions(-)

Detailed changes

crates/extension_api/wit/since_v0.8.0/extension.wit 🔗

@@ -170,10 +170,6 @@ world extension {
     export dap-locator-create-scenario: func(locator-name: string, build-config-template: build-task-template, resolved-label: string, debug-adapter-name: string) -> option<debug-scenario>;
     export run-dap-locator: func(locator-name: string, config: resolved-task) -> result<debug-request, string>;
 
-    // =========================================================================
-    // Language Model Provider Extension API
-    // =========================================================================
-
     /// Returns information about language model providers offered by this extension.
     export llm-providers: func() -> list<provider-info>;
 

crates/extension_api/wit/since_v0.8.0/llm-provider.wit 🔗

@@ -253,10 +253,6 @@ interface llm-provider {
         min-total-token-count: u64,
     }
 
-    // =========================================================================
-    // OAuth Web Auth Flow Types
-    // =========================================================================
-
     /// Configuration for starting an OAuth web authentication flow.
     record oauth-web-auth-config {
         /// The URL to open in the user's browser to start authentication.
@@ -300,10 +296,6 @@ interface llm-provider {
         body: string,
     }
 
-    // =========================================================================
-    // Import Functions (callable by extensions)
-    // =========================================================================
-
     /// Request a credential from the user.
     /// Returns true if the credential was provided, false if the user cancelled.
     request-credential: func(

crates/extension_host/src/wasm_host/wit.rs 🔗

@@ -1176,10 +1176,6 @@ impl Extension {
         }
     }
 
-    // =========================================================================
-    // LLM Provider Methods (v0.8.0+)
-    // =========================================================================
-
     pub async fn call_llm_providers(
         &self,
         store: &mut Store<WasmState>,