-
Notifications
You must be signed in to change notification settings - Fork 0
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
2ab123c
commit b8b16bc
Showing
23 changed files
with
269 additions
and
194 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
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
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
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
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Employee | ||
\U0001F469 | ||
""" | ||
|
||
import os | ||
from typing import List, Tuple | ||
|
||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Enterprise | ||
\U0001F3E2 | ||
""" | ||
|
||
import os | ||
|
||
from gpt_enterprise.team_leader import TeamLeader | ||
|
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
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
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
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,48 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "GPTenterprise" | ||
version = "0.1.0b1" | ||
authors = [ | ||
{name = "nervousapps (Achille Pénet)", email = "[email protected]"} | ||
] | ||
description = "Emulating an enterprise with OpenaAI GPT." | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
readme = "README.md" | ||
dependencies = [ | ||
"python-dotenv", | ||
"openai", | ||
] | ||
requires-python=">= 3.9" | ||
|
||
[project.urls] | ||
Source = "https://github.com/nervousapps/GPTenterprise" | ||
Documentation = "https://nervousapps.github.io/GPTenterprise" | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest", | ||
"pytest-mock", | ||
"pytest-cov", | ||
"pytest-asyncio", | ||
] | ||
doc = ["black", "pdoc"] | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
|
||
[tool.setuptools.packages.find] | ||
include = ['gpt_enterprise*'] | ||
exclude = ['tests'] | ||
|
||
[tool.setuptools.package-data] | ||
"gpt_enterprise.prompts" = ["*.txt"] | ||
|
||
[project.scripts] | ||
GPTenterprise = "gpt_enterprise:main" | ||
|
||
|
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,28 +1,76 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# pip-compile --output-file=./python/requirements-docs.txt ./python/requirements-docs.in | ||
# pip-compile --extra=doc --output-file=./python/requirements-docs.txt ./python/pyproject.toml | ||
# | ||
black==23.3.0 | ||
# via -r ./python/requirements-docs.in | ||
click==8.1.3 | ||
annotated-types==0.6.0 | ||
# via pydantic | ||
anyio==4.2.0 | ||
# via | ||
# httpx | ||
# openai | ||
black==23.12.1 | ||
# via GPTenterprise (python/pyproject.toml) | ||
certifi==2023.11.17 | ||
# via | ||
# httpcore | ||
# httpx | ||
click==8.1.7 | ||
# via black | ||
jinja2==3.1.2 | ||
distro==1.9.0 | ||
# via openai | ||
exceptiongroup==1.2.0 | ||
# via anyio | ||
h11==0.14.0 | ||
# via httpcore | ||
httpcore==1.0.2 | ||
# via httpx | ||
httpx==0.26.0 | ||
# via openai | ||
idna==3.6 | ||
# via | ||
# anyio | ||
# httpx | ||
jinja2==3.1.3 | ||
# via pdoc | ||
markupsafe==2.1.2 | ||
markupsafe==2.1.3 | ||
# via | ||
# jinja2 | ||
# pdoc | ||
mypy-extensions==1.0.0 | ||
# via black | ||
packaging==23.1 | ||
openai==1.7.2 | ||
# via GPTenterprise (python/pyproject.toml) | ||
packaging==23.2 | ||
# via black | ||
pathspec==0.11.1 | ||
pathspec==0.12.1 | ||
# via black | ||
pdoc==13.1.0 | ||
# via -r ./python/requirements-docs.in | ||
platformdirs==3.2.0 | ||
pdoc==14.3.0 | ||
# via GPTenterprise (python/pyproject.toml) | ||
platformdirs==4.1.0 | ||
# via black | ||
pygments==2.15.1 | ||
pydantic==2.5.3 | ||
# via openai | ||
pydantic-core==2.14.6 | ||
# via pydantic | ||
pygments==2.17.2 | ||
# via pdoc | ||
python-dotenv==1.0.0 | ||
# via GPTenterprise (python/pyproject.toml) | ||
sniffio==1.3.0 | ||
# via | ||
# anyio | ||
# httpx | ||
# openai | ||
tomli==2.0.1 | ||
# via black | ||
tqdm==4.66.1 | ||
# via openai | ||
typing-extensions==4.9.0 | ||
# via | ||
# anyio | ||
# black | ||
# openai | ||
# pydantic | ||
# pydantic-core |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.