├── .gitignore ├── README.md ├── create_schema_index.py ├── demo.py └── schemas ├── github.schema ├── tcg.schema ├── tmdb.schema └── yelp.schema /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .chromadb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenyang/pluginless_agent_with_graphql/HEAD/README.md -------------------------------------------------------------------------------- /create_schema_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenyang/pluginless_agent_with_graphql/HEAD/create_schema_index.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenyang/pluginless_agent_with_graphql/HEAD/demo.py -------------------------------------------------------------------------------- /schemas/github.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenyang/pluginless_agent_with_graphql/HEAD/schemas/github.schema -------------------------------------------------------------------------------- /schemas/tcg.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenyang/pluginless_agent_with_graphql/HEAD/schemas/tcg.schema -------------------------------------------------------------------------------- /schemas/tmdb.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenyang/pluginless_agent_with_graphql/HEAD/schemas/tmdb.schema -------------------------------------------------------------------------------- /schemas/yelp.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenyang/pluginless_agent_with_graphql/HEAD/schemas/yelp.schema --------------------------------------------------------------------------------