Skip to content

Commit

Permalink
Merge pull request #38 from Dino-Kupinic/develop
Browse files Browse the repository at this point in the history
v0.2.2
  • Loading branch information
Dino-Kupinic authored Aug 14, 2024
2 parents 6aed963 + c104fae commit 0acdb3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ai-backend-docs",
"version": "0.2.1",
"version": "0.2.2",
"description": "Documentation for the AI Backend project",
"scripts": {
"docs:dev": "vitepress dev src",
Expand Down
2 changes: 2 additions & 0 deletions src/internal/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ class TextModel(Enum):
"""

LLAMA3 = "llama3"
LLAMA3_1 = "llama3.1"
GEMMA2 = "gemma2"


class ImageModel(Enum):
Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
app = FastAPI(
title="AI Backend",
description="ai backend for your app powered by llama3",
version="0.2.1",
version="0.2.2",
)

origins = ["*"]
Expand Down

0 comments on commit 0acdb3e

Please sign in to comment.