Skip to content

Commit

Permalink
restructure modules
Browse files Browse the repository at this point in the history
  • Loading branch information
VVoruganti committed Aug 28, 2024
1 parent a955768 commit 71e9ec4
Show file tree
Hide file tree
Showing 25 changed files with 1,919 additions and 4,830 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,5 @@ www/next-env.d.ts
.vercel

.yarn/

dist/
Empty file removed agent/__init__.py
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.
586 changes: 586 additions & 0 deletions agent/poetry.lock

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions agent/pyproject.toml
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"
1,282 changes: 1,282 additions & 0 deletions api/poetry.lock

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions api/pyproject.toml
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"
4 changes: 0 additions & 4 deletions supabase/.gitignore

This file was deleted.

141 changes: 0 additions & 141 deletions supabase/config.toml

This file was deleted.

This file was deleted.

Empty file removed supabase/seed.sql
Empty file.
6 changes: 6 additions & 0 deletions www/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,9 @@ next-env.d.ts

# Sentry Auth Token
.sentryclirc

# million
.million

# yarn
.yarn
1 change: 0 additions & 1 deletion www/.million/store.json

This file was deleted.

2 changes: 1 addition & 1 deletion www/package.json
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": {
Expand Down
Loading

0 comments on commit 71e9ec4

Please sign in to comment.