-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathcompose
More file actions
executable file
·195 lines (170 loc) · 7.44 KB
/
Copy pathcompose
File metadata and controls
executable file
·195 lines (170 loc) · 7.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#!/usr/bin/env python3
# Copyright (c) 2025 Kristofer Berggren
# All rights reserved.
#
# nchat is distributed under the MIT license, see LICENSE for details.
import os
import sys
import json
import argparse
import urllib.request
import urllib.error
def get_api_key(api_key_env: str|None, service: str) -> str|None:
"""Return API key from `api_key_env`. If None, return None (no auth)."""
if api_key_env is None:
return None
api_key = os.getenv(api_key_env)
if not api_key:
print(f"Error: Please set the {api_key_env} environment variable for the '{service}' service.", file=sys.stderr)
sys.exit(1)
return api_key
def read_chat_file(path: str) -> list[str]:
try:
with open(path, "r", encoding="utf-8") as f:
return [line.rstrip("\n") for line in f]
except FileNotFoundError:
print(f"Error: File '{path}' not found.", file=sys.stderr)
sys.exit(1)
def parse_chat(lines: list[str]) -> tuple[str, list[dict]]:
# Drop trailing empties
while lines and not lines[-1].strip():
lines.pop()
if not lines or ":" not in lines[-1]:
print("Error: Last line must be 'YourName:'", file=sys.stderr)
sys.exit(1)
last_sender, last_rest = lines[-1].split(":", 1)
if last_rest.strip():
print("Error: Last line must end with a colon and no message (e.g., 'Stanley:')", file=sys.stderr)
sys.exit(1)
your_name = last_sender.strip()
if not your_name:
print("Error: Empty name on last line.", file=sys.stderr)
sys.exit(1)
messages = []
for ln in lines[:-1]:
if not ln.strip():
continue
if ":" not in ln:
continue
sender, content = ln.split(":", 1)
sender = sender.strip()
content = content.lstrip()
role = "assistant" if sender == your_name else "user"
messages.append({"role": role, "content": f"{sender}: {content}"})
if not messages:
print("Error: No valid 'Name: message' lines before the final 'YourName:' marker.", file=sys.stderr)
sys.exit(1)
return your_name, messages
def build_payload(model: str, your_name: str, chat_messages: list[dict], temperature: float|None, prompt: str | None, max_tokens: int | None) -> dict:
prompt = prompt if prompt else "Suggest {your_name}'s next reply."
prompt = prompt.replace("{your_name}", your_name)
system_msg = {
"role": "system",
"content": f"You are {your_name} in a chat. " + prompt
}
final_instruction = {
"role": "user",
"content": prompt
}
payload = {
"model": model,
"messages": [system_msg] + chat_messages + [final_instruction]
}
if temperature is not None:
payload["temperature"] = temperature
if max_tokens is not None:
payload["max_tokens"] = max_tokens
return payload
def send_request(payload: dict, api_url: str, api_key: str, verbose: bool, timeout: int) -> str:
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {api_key}",
}
if verbose:
print("=== Request ===", file=sys.stderr)
print(json.dumps(payload, ensure_ascii=False, indent=2), file=sys.stderr)
req = urllib.request.Request(
api_url,
data=json.dumps(payload).encode("utf-8"),
headers=headers
)
try:
with urllib.request.urlopen(req, timeout=timeout) as resp:
body = resp.read().decode("utf-8")
result = json.loads(body)
except urllib.error.HTTPError as e:
try:
err_json = json.loads(e.read().decode("utf-8"))
msg = err_json.get("error", {}).get("message") or str(err_json)
except Exception:
msg = f"{e.code} {e.reason}"
print(f"HTTP Error: {msg}", file=sys.stderr)
sys.exit(1)
except urllib.error.URLError as e:
print(f"URL Error: {e.reason}", file=sys.stderr)
sys.exit(1)
except json.JSONDecodeError:
print("Error: Response was not valid JSON.", file=sys.stderr)
sys.exit(1)
try:
return result["choices"][0]["message"]["content"]
except (KeyError, IndexError):
if verbose:
print("=== Raw Response ===", file=sys.stderr)
print(json.dumps(result, ensure_ascii=False, indent=2), file=sys.stderr)
print("Error: Unexpected response structure.", file=sys.stderr)
sys.exit(1)
def main():
parser = argparse.ArgumentParser(
description="Suggest your next reply from a simple chat log using OpenAI/Gemini or an OpenAI-compatible server."
)
parser.add_argument("-c", "--chat-completion", required=True,
help="Path to input chat file. Last line must be 'YourName:'.")
parser.add_argument("-s", "--service", default="openai",
help="Service: openai (default), gemini, ollama, or host[:port]/URL for OpenAI-compatible server.")
parser.add_argument("-m", "--model", default=None,
help="Model name. Defaults depend on --service (openai: gpt-4o-mini, gemini: gemini-2.0-flash).")
parser.add_argument("-M", "--max-tokens", type=int,
help="Maximum number of output tokens to generate.")
parser.add_argument("-p", "--prompt", default=None,
help="Instruction prompt (default: \"Suggest {your_name}'s next reply.\")")
parser.add_argument("-t", "--temperature", type=float,
help="Sampling temperature (e.g., 0.2).")
parser.add_argument("-v", "--verbose", action="store_true",
help="Print request payload to stderr.")
parser.add_argument("-T", "--timeout", type=int, default=10,
help="Network timeout in seconds (default: 10).")
args = parser.parse_args()
if args.timeout <= 0:
print("Error: -T / --timeout must be > 0 seconds.", file=sys.stderr)
sys.exit(1)
# Resolve service -> api_url, api_key_env, and default model
service = args.service.strip().lower() # Normalize service name
if service == "openai":
api_url = "https://api.openai.com/v1/chat/completions"
api_key_env = "OPENAI_API_KEY"
service_default_model = "gpt-4o-mini"
elif service == "gemini":
api_url = "https://generativelanguage.googleapis.com/v1beta/openai/chat/completions"
api_key_env = "GEMINI_API_KEY"
service_default_model = "gemini-2.0-flash"
elif service == "ollama":
api_url = "http://localhost:11434/v1/chat/completions"
api_key_env = None
service_default_model = "deepseek-v3.1:671b-cloud"
else:
base = service if service.startswith(("http://", "https://")) else f"http://{service}"
api_url = base.rstrip("/") + "/v1/chat/completions"
api_key_env = None # no auth for custom hosts
service_default_model = "gpt-4o-mini"
# Ensure the correct API key is used for the selected service
api_key = get_api_key(api_key_env, service)
model = args.model if args.model else service_default_model
lines = read_chat_file(args.chat_completion)
your_name, chat_messages = parse_chat(lines)
payload = build_payload(model, your_name, chat_messages, args.temperature, args.prompt, args.max_tokens)
reply = send_request(payload, api_url, api_key, verbose=args.verbose, timeout=args.timeout)
reply_without_name = reply.split(":", 1)[1].strip() if ":" in reply else reply
print(reply_without_name)
if __name__ == "__main__":
main()