Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: inconsistent readme namings #23

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
LlmChain
========
LLM Chain
=========

Simple PHP toolkit for building LLM chains.

Expand Down Expand Up @@ -91,32 +91,32 @@ Depending on the example you need to export needed environment variables for API
1. Simple Clock Tool
```bash
export OPENAI_API_KEY=sk-...
php examples/toolchain-clock.php
php examples/toolbox-clock.php
```

1. Wikipedia Tool
```bash
export OPENAI_API_KEY=sk-...
php examples/toolchain-wikipedia.php
php examples/toolbox-wikipedia.php
```

1. SerpAPI Tool
```bash
export OPENAI_API_KEY=sk-...
export SERPAPI_API_KEY=...
php examples/toolchain-serpapi.php
php examples/toolbox-serpapi.php
```

1. Weather Tool
```bash
export OPENAI_API_KEY=sk-...
php examples/toolchain-weather.php
php examples/toolbox-weather.php
```

1. YouTube Transcriber Tool
```bash
export OPENAI_API_KEY=sk-...
php examples/toolchain-youtube.php
php examples/toolbox-youtube.php
```

### Structured Output
Expand Down