-
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.
* restructure modules * Working honchofied discord bot * SSR Auth (#142) * Initial SSR Auth Migration * Middleware matcher * Loading Icons and API .env template * Google and Discord Sign in * Improved list and code rendering * .env.template for discord and clean up root setup
- Loading branch information
1 parent
a955768
commit bc86d24
Showing
63 changed files
with
5,513 additions
and
7,621 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -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.
This file was deleted.
Oops, something went wrong.
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" |
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,14 @@ | ||
# Azure Mirascope Keys | ||
AZURE_OPENAI_ENDPOINT= | ||
AZURE_OPENAI_API_KEY= | ||
AZURE_OPENAI_API_VERSION= | ||
AZURE_OPENAI_DEPLOYMENT= | ||
|
||
# Supabase Settings | ||
SUPABASE_URL= | ||
SUPABASE_KEY= | ||
|
||
# NextJS & fastAPI | ||
URL=http://localhost:3000 | ||
HONCHO_URL=https://demo.honcho.dev | ||
HONCHO_APP_NAME= |
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
Oops, something went wrong.