-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a955768
commit 71e9ec4
Showing
25 changed files
with
1,919 additions
and
4,830 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,3 +74,5 @@ www/next-env.d.ts | |
.vercel | ||
|
||
.yarn/ | ||
|
||
dist/ |
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[tool.poetry] | ||
name = "agent" | ||
version = "0.5.2" | ||
description = "The LLM Engine behind Tutor-GPT" | ||
authors = ["Vineeth Voruganti <[email protected]>"] | ||
# readme = "README.md" | ||
packages = [ | ||
{ include = "agent"}, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
honcho-ai = "^0.0.14" | ||
mirascope = "^0.18.0" | ||
openai = "^1.3.8" | ||
validators = "^0.20.0" | ||
python-dotenv = "^1.0.1" | ||
sentry-sdk = "^2.13.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[tool.poetry] | ||
name = "tutor-gpt api" | ||
version = "0.6.0" | ||
description = "The REST API Implementation of Tutor-GPT" | ||
authors = ["Vineeth Voruganti <[email protected]>"] | ||
readme = "README.md" | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
agent = { path = "../agent", develop = true } | ||
fastapi = {extras = ["standard"], version = "^0.112.2"} | ||
sentry-sdk = {extras = ["fastapi"], version = "^2.13.0"} | ||
honcho-ai = "^0.0.14" | ||
python-dotenv = "^1.0.1" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
supabase/migrations/20231204202303_create_conversations_and_memory_tables.sql
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,3 +36,9 @@ next-env.d.ts | |
|
||
# Sentry Auth Token | ||
.sentryclirc | ||
|
||
# million | ||
.million | ||
|
||
# yarn | ||
.yarn |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "www", | ||
"name": "Tutor GPT Web App", | ||
"version": "0.5.1", | ||
"private": true, | ||
"scripts": { | ||
|
Oops, something went wrong.