LLM4PCG is a python package containing required and utility functions of ChatGPT4PCG competition, but modified to support local LLMs that compatible with OpenAI API interface.
Project description
ChatGPT4PCG
ChatGPT4PCG is a python package containing required and utility functions as a part of ChatGPT4PCG competition.
Installation
Use the package manager pip to install ChatGPT4PCG.
pip install chatgpt4pcg
Dependency
This file uses the following Python libraries:
openai
Functions
run_evaluation(team_name: str, fn: Type[TrialLoop], num_trials=10, characters: list[str] = None)
This function runs a trial for each character in the alphabet for a given team. It creates directories for logging and output, and generates a log file with a timestamp and timezone in the filename. It then runs trials for each character, skipping any that already exist.
run_trial(ctx: TrialContext, fn: Type[TrialLoop])
This function runs a single trial. It writes the result of the trial to the log file and the final response to a text file in the output directory.
chat_with_chatgpt(ctx: TrialContext, messages: []) -> list[str]
This function chats with ChatGPT. It sends a list of messages to the ChatGPT model and writes the response and token counts to the log file. It also checks for time and token limits, raising errors if these are exceeded.
Usage
To use this file, import it and call the run_evaluation
function with the team name and trial loop function as
arguments. You can also specify the number of trials to run and the characters to run trials for.
from chatgpt4pcg.competition import run_evaluation, TrialLoop, TrialContext, chat_with_chatgpt
class ZeroShotPrompting(TrialLoop):
@staticmethod
def run(ctx: TrialContext, target_character: str) -> str:
message_history = [{
"role": "user",
"content": "Return this is a test message."
}]
response = chat_with_chatgpt(ctx, message_history)
return response[0]
run_evaluation("x_wing", ZeroShotPrompting)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file llm4pcg-1.0.0.tar.gz
.
File metadata
- Download URL: llm4pcg-1.0.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f0f0bdd2b218c3f70d55964235b2e472643ede526dd80a546e2a5c68c64eb17 |
|
MD5 | 1344290abba03b934964f332b56cc68d |
|
BLAKE2b-256 | d2de3974fe37d1639d60808b6e427d53cd6ad967a4a00e9c430b2980a0a99761 |
File details
Details for the file llm4pcg-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: llm4pcg-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3901552f487afefa62610084c1a2d66865e78e6079d46908235c1987e1c8194 |
|
MD5 | b5bea7b598089e85fef62ccf31f21e90 |
|
BLAKE2b-256 | 2310b8d29f3fa599942a6e0c39a1a01bae4ab170064fea57adae34d4e9854fb6 |