You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-6Lines changed: 13 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
LLM Chain
2
2
=========
3
3
4
-
Simple PHP toolkit for building LLM chains.
4
+
PHP library for building LLM-based features and applications.
5
5
6
-
This is not stable nor production ready, it's just a playground for me to experiment with LLMs.
7
-
Abstractions, concepts and interfaces are not good at all and will definitely change.
6
+
This is not a stable library yet, but still rather experimental. Feel free to try it out, give feedback, ask questions, contribute or share your use cases.
7
+
Abstractions, concepts and interfaces are not final and potentially subject of change.
8
8
9
9
Requirements
10
10
------------
@@ -13,12 +13,14 @@ Requirements
13
13
Installation
14
14
------------
15
15
16
-
The recommended way to install LlmChain is through [Composer](http://getcomposer.org/):
16
+
The recommended way to install LLM Chain is through [Composer](http://getcomposer.org/):
17
17
18
18
```bash
19
19
composer require php-llm/llm-chain
20
20
```
21
21
22
+
When using Symfony Framework, check out the integration bundle [php-llm/llm-chain-bundle](https://github.com/php-llm/llm-chain-bundle).
23
+
22
24
Supported Models & Runtimes
23
25
---------------------------
24
26
@@ -61,7 +63,7 @@ Usage Examples
61
63
--------------
62
64
63
65
See [examples](examples) to run example implementations using this library.
64
-
Depending on the example you need to export needed environment variables for API keys or deployment configurations:
66
+
Depending on the example you need to export different environment variables for API keys or deployment configurations:
65
67
66
68
### Chat Examples
67
69
@@ -86,7 +88,7 @@ Depending on the example you need to export needed environment variables for API
86
88
php examples/chat-claude-anthropic.php
87
89
```
88
90
89
-
### ToolChain Examples
91
+
### Tool Examples
90
92
91
93
1. Simple Clock Tool
92
94
```bash
@@ -126,3 +128,8 @@ Depending on the example you need to export needed environment variables for API
0 commit comments