Skip to content

Commit

Permalink
refactor: update model ownership information
Browse files Browse the repository at this point in the history
  • Loading branch information
mumu-lhl committed Feb 8, 2025
1 parent 7840a9b commit 71b5a6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/api/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ function models(app: Hono<BlankEnv, BlankSchema, "/">) {
data: [{
"id": "gpt-4o-mini",
"object": "model",
"owned_by": "duckduckgo-chat-ai",
"owned_by": "OpenAI",
}, {
"id": "claude-3-haiku",
"object": "model",
"owned_by": "duckduckgo-chat-ai",
"owned_by": "Anthropic",
}, {
"id": "llama",
"object": "model",
"owned_by": "duckduckgo-chat-ai",
"owned_by": "Meta",
}, {
"id": "mixtral",
"object": "model",
"owned_by": "duckduckgo-chat-ai",
"owned_by": "Mixtral",
}, {
"id": "o3-mini",
"object": "model",
"owned_by": "duckduckgo-chat-ai",
"owned_by": "OpenAI",
}],
});
});
Expand Down

0 comments on commit 71b5a6e

Please sign in to comment.