We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1be66c9 commit 13db6cdCopy full SHA for 13db6cd
3 files changed
README.md
@@ -170,6 +170,7 @@ A runnable example is available at:
170
171
- `docs/USAGE.md`
172
- `docs/CODEX_SLOT_RELAY.md`
173
+- `examples/pair_local_relay.py`
174
175
## Changelog
176
docs/CODEX_SLOT_RELAY.md
@@ -25,6 +25,12 @@ client = CodexClient()
25
print(client.ask("Balas satu kata saja: halo"))
26
```
27
28
+A runnable file is also included:
29
+
30
+```bash
31
+python3 examples/pair_local_relay.py
32
+```
33
34
## If you want custom values
35
36
```bash
examples/pair_local_relay.py
@@ -0,0 +1,10 @@
1
+from codex_utils import CodexClient
2
3
4
+def main() -> None:
5
+ client = CodexClient()
6
+ print(client.ask("Balas satu kata saja: halo"))
7
8
9
+if __name__ == "__main__":
10
+ main()
0 commit comments