mirror of
https://github.com/corca-ai/EVAL
synced 2024-10-30 09:20:44 +00:00
2.9 KiB
2.9 KiB
EVAL
EVAL(Elastic Versatile Agent with Langchain) will execute all your requests. Like the eval method!
You don't have to think about how. If you tell them the results you want, they'll search, code, run, and test the Internet themselves, and they'll return the final results.
EVAL's FEATURE
- It can understand and generate data formats for text, image, dataframe, audio (TODO), video (TODO).
- It can create tools that it can use by writing and modifying code.
- It can evolve itself by executing and testing its code.
BUILT-IN TOOLS
- Search
- Google, Bing, Wikipedia
- Custom DB Search (Currently using Corca's Wine Data in https://www.workershop.kr/en)
- Use GPT index to quickly find the information you need in a document and use that information to answer
- Requests.get (Get information from anywhere you want)
- Terminal
- Python REPL
- Image Understanding, Generation, Editing
- Image Understanding
- Image Understanding: blip-image-captioning
- Visual Question&Answering: blip-vqa
- Image Generation: Stable Diffusion 1.5
- Image Editing
- Replace or remove an object: Stable Diffusion Inpainting
- Change Image's style: InstructPix2Pix
- Image Understanding
Thanks to LangChain, Visual ChatGPT, llama index.
CUSTOM TOOLS
We also don't know what tools EVAL will create. Every day, It will create the right tools to execute your request.
Usage
- S3 Settings
- environments settings
docker-compose up -d
S3
- Create a bucket.
- Turn off the "Block all public access" setting for the bucket.
- Add the following text to Bucket Policy.
{ "Version": "2012-10-17", "Statement": [ { "Sid": "AllowPublicRead", "Effect": "Allow", "Principal": { "AWS": "*" }, "Action": "s3:GetObject", "Resource": "arn:aws:s3:::{your-bucket-name}/*" } ] }
Environment
These environmental variables are essential, so please set them.
BOT_NAME: your custom bot name
OPENAI_API_KEY: openai api key
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
AWS_REGION
AWS_S3_BUCKET
These environment variables are necessary to use the following tools:
If you want to use it, set it up, and if you don't need it, you don't have to set it up.
SERPAPI_API_KEY: need to append google search tool
BING_SEARCH_URL, BING_SUBSCRIPTION_KEY: need to append bing search tool
TODO
- memory saving
- session manage
- convert to alpaca
- prompt upgrade
- give a tool to create tools
- etc.
Reference
Thanks to the following repositories.