https://github.com/vaibhavpandeyvpz/inpher
PHP console application to automate work with structure data using OpenAI (or LLMs to be specific)
https://github.com/vaibhavpandeyvpz/inpher
ai chatgpt cli console data-science function-calling llm openai
Last synced: 4 months ago
JSON representation
PHP console application to automate work with structure data using OpenAI (or LLMs to be specific)
- Host: GitHub
- URL: https://github.com/vaibhavpandeyvpz/inpher
- Owner: vaibhavpandeyvpz
- License: other
- Created: 2024-06-25T17:52:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-26T09:25:58.000Z (almost 2 years ago)
- Last Synced: 2025-05-29T07:55:45.858Z (about 1 year ago)
- Topics: ai, chatgpt, cli, console, data-science, function-calling, llm, openai
- Language: PHP
- Homepage: https://vaibhavpandey.com/
- Size: 57.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# inpher
[PHP](https://www.php.net/) console application to automate work with structured data using [OpenAI](https://openai.com/) (or LLMs to be specific).
## Usage
Run the [Docker](https://www.docker.com/) image in any folder as below:
```shell
# supply OPENAI_API_KEY as run args
docker run -it --rm \
-e OPENAI_API_KEY=sk-****** \
-v $PWD:/workspace \
ghcr.io/vaibhavpandeyvpz/inpher
# read OPENAI_API_KEY from a .env file
docker run -it --rm \
--env-file .env \
-v $PWD:/workspace \
ghcr.io/vaibhavpandeyvpz/inpher
```
The application will then interactively prompt you for input.
## License
See the [LICENSE](LICENSE) file.