Skip to content

Commit

Permalink
Merge pull request #1 from cdcai/dev
Browse files Browse the repository at this point in the history
v0.1
  • Loading branch information
beansrowning authored Sep 25, 2024
2 parents d512454 + 72a93a2 commit 8db69c1
Show file tree
Hide file tree
Showing 17 changed files with 1,497 additions and 128 deletions.
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ __pycache__/
# C extensions
*.so

# Data
data/*

# Environments
.env
.venv
Expand All @@ -14,3 +17,33 @@ venv/
ENV/
env.bak/
venv.bak/

# Logs
logs/*
*.log

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
3 changes: 3 additions & 0 deletions agents/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .agent import ReactAgent, ReactandReflectAgent, SASConvertAgent, PythonRefineAgent, CodeOutlinerAgent, OutlineSummarizeAgent, PythonSummarizeAgent, PseudocodeSummarizeAgent
from .env import WikiQAEnv
from .generic import *
3 changes: 3 additions & 0 deletions agents/agent/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .base import *
from .sas import *
from .reflexion import *
Loading

0 comments on commit 8db69c1

Please sign in to comment.