Skip to content

Commit dc4cbb3

Browse files
committed
string changes
1 parent a244021 commit dc4cbb3

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Light-Alchemy OpenAI Worker
1+
# Alchemy Worker
22

3-
Light Alchemy is a Cloudflare Worker that performs string parsing and generates queries to inject personality and a desired prompt into GPT-3. This can be used to create more natural and engaging chatbot conversations.
3+
Alchemy Worker is a Cloudflare Worker that performs string parsing and generates queries to inject personality and a desired prompt into GPT-3. This can be used to create more natural and engaging chatbot conversations.
44

55
## Usage
66

7-
To use Light Alchemy, you will need to do the following:
7+
To use Alchemy Worker, you will need to do the following:
88

99
1. Obtain an OpenAI bearer token.
1010
2. Set up a Cloudflare account and create a new worker.
11-
3. Paste the code for Light Alchemy into the Cloudflare Worker editor.
11+
3. Paste the code for Alchemy Worker into the Cloudflare Worker editor.
1212
5. Deploy the worker and start using it to generate queries for Divinici.
1313
6. In your requests, ensure that the OpenAI API key is added in the header `Authorization: Bearer <OPEN_API_KEY>`
1414
7. Example body `{"input": "write a long form poem about cats!", "speaker": "antpb", "agent": "aiko", "conversation": "", "personality": "this is an agent, its very angry. no one knows why"}`
@@ -29,14 +29,14 @@ Here's a gross object that will inject a personality as well as all the other pe
2929

3030
## Dependencies
3131

32-
Light Alchemy requires the following dependencies:
32+
Alchemy Worker requires the following dependencies:
3333

3434
- [Cloudflare Workers](https://workers.cloudflare.com/)
3535
- [OpenAI API](https://beta.openai.com/)
3636

3737
## Query Generation
3838

39-
Light Alchemy uses the following process to generate queries for Divinici:
39+
Alchemy Worker uses the following process to generate queries for Divinici:
4040

4141
1. Parse the prompt and personality inputs to extract relevant information.
4242
2. Use this information to construct a query that will inject the desired personality and prompt into Divinici.
@@ -47,4 +47,4 @@ https://github.com/Oneirocom/MagickML
4747

4848
## License
4949

50-
Light Alchemy OpenAI Worker is licensed under the GPL 2.0 license. See [LICENSE](LICENSE) for more information.
50+
Alchemy Worker OpenAI Worker is licensed under the GPL 2.0 license. See [LICENSE](LICENSE) for more information.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "alchemy-cf-worker",
2+
"name": "alchemy-worker",
33
"version": "1.0.0",
44
"description": "A CF worker mocked against Magick ML spells for personality injected AI agents",
55
"main": "index.js",

wrangler.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "alchemy-cf-worker"
1+
name = "alchemy-worker"
22
type = "webpack"
33
route = ''
44
zone_id = ''

0 commit comments

Comments
 (0)