File size: 7,782 Bytes
034b730 |
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
from dora import DoraStatus
import pylcs
import os
import pyarrow as pa
from transformers import AutoModelForCausalLM, AutoTokenizer
import json
import re
import time
import torch
import requests
from io import BytesIO
from PIL import Image
from transformers import AutoModelForCausalLM, AutoProcessor
from transformers.image_utils import (
to_numpy_array,
PILImageResampling,
ChannelDimension,
)
from transformers.image_transforms import resize, to_channel_dimension_format
API_TOKEN = os.getenv("HF_TOKEN")
DEVICE = torch.device("cuda")
PROCESSOR = AutoProcessor.from_pretrained(
"HuggingFaceM4/tr_272_bis_opt_step_15000_merge",
token=API_TOKEN,
)
MODEL = AutoModelForCausalLM.from_pretrained(
"HuggingFaceM4/tr_272_bis_opt_step_15000_merge",
token=API_TOKEN,
trust_remote_code=True,
torch_dtype=torch.bfloat16,
).to(DEVICE)
image_seq_len = MODEL.config.perceiver_config.resampler_n_latents
BOS_TOKEN = PROCESSOR.tokenizer.bos_token
BAD_WORDS_IDS = PROCESSOR.tokenizer(
["<image>", "<fake_token_around_image>"], add_special_tokens=False
).input_ids
CHATGPT = True
MODEL_NAME_OR_PATH = "TheBloke/deepseek-coder-6.7B-instruct-GPTQ"
MESSAGE_SENDER_TEMPLATE = """
### Instruction
You're a json expert. Format your response as a json with a topic and a data field in a ```json block. No explaination needed. No code needed.
The schema for those json are:
- forward
- backward
- left
- right
The response should look like this:
```json
[
{{ "topic": "control", "data": "forward" }},
]
```
{user_message}
### Response:
"""
model = AutoModelForCausalLM.from_pretrained(
MODEL_NAME_OR_PATH,
device_map="auto",
trust_remote_code=True,
revision="main",
)
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME_OR_PATH, use_fast=True)
def extract_json_code_blocks(text):
"""
Extracts json code blocks from the given text that are enclosed in triple backticks with a json language identifier.
Parameters:
- text: A string that may contain one or more json code blocks.
Returns:
- A list of strings, where each string is a block of json code extracted from the text.
"""
pattern = r"```json\n(.*?)\n```"
matches = re.findall(pattern, text, re.DOTALL)
if len(matches) == 0:
pattern = r"```json\n(.*?)(?:\n```|$)"
matches = re.findall(pattern, text, re.DOTALL)
if len(matches) == 0:
return [text]
return matches
from openai import OpenAI
import os
import base64
import requests
API_TOKEN = os.getenv("HF_TOKEN")
# Function to encode the image
def encode_image(image_path):
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode("utf-8")
def understand_image(image_path):
# Getting the base64 string
base64_image = encode_image(image_path)
headers = {"Content-Type": "application/json", "Authorization": f"Bearer {api_key}"}
payload = {
"model": "gpt-4-vision-preview",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "What’s in this image? Describe it in a short sentence",
},
{
"type": "image_url",
"image_url": {"url": f"data:image/jpeg;base64,{base64_image}"},
},
],
}
],
"max_tokens": 300,
}
response = requests.post(
"https://api.openai.com/v1/chat/completions", headers=headers, json=payload
)
print(response.json()["choices"][0]["message"]["content"])
class Operator:
def on_event(
self,
dora_event,
send_output,
) -> DoraStatus:
if dora_event["type"] == "INPUT" and dora_event["id"] == "message_sender":
user_message = dora_event["value"][0].as_py()
output = self.ask_llm(
MESSAGE_SENDER_TEMPLATE.format(user_message=user_message)
)
outputs = extract_json_code_blocks(output)[0]
print("response: ", output, flush=True)
try:
outputs = json.loads(outputs)
if not isinstance(outputs, list):
outputs = [outputs]
for output in outputs:
if not isinstance(output["data"], list):
output["data"] = [output["data"]]
if output["topic"] in ["led", "blaster"]:
send_output(
output["topic"],
pa.array(output["data"]),
dora_event["metadata"],
)
send_output(
"assistant_message",
pa.array([f"sent: {output}"]),
dora_event["metadata"],
)
else:
send_output(
"assistant_message",
pa.array(
[f"Could not send as topic was not available: {output}"]
),
dora_event["metadata"],
)
except:
send_output(
"assistant_message",
pa.array([f"Could not parse json: {outputs}"]),
dora_event["metadata"],
)
# if data is not iterable, put data in a list
return DoraStatus.CONTINUE
def ask_llm(self, prompt):
# Generate output
# prompt = PROMPT_TEMPLATE.format(system_message=system_message, prompt=prompt))
input = tokenizer(prompt, return_tensors="pt")
input_ids = input.input_ids.cuda()
# add attention mask here
attention_mask = input["attention_mask"]
output = model.generate(
inputs=input_ids,
temperature=0.7,
do_sample=True,
top_p=0.95,
top_k=40,
max_new_tokens=512,
attention_mask=attention_mask,
eos_token_id=tokenizer.eos_token_id,
)
# Get the tokens from the output, decode them, print them
# Get text between im_start and im_end
return tokenizer.decode(output[0], skip_special_tokens=True)[len(prompt) :]
def ask_chatgpt(self, prompt):
from openai import OpenAI
client = OpenAI()
print("---asking chatgpt: ", prompt, flush=True)
response = client.chat.completions.create(
model="gpt-4-turbo-preview",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": prompt},
],
)
answer = response.choices[0].message.content
print("Done", flush=True)
return answer
if __name__ == "__main__":
op = Operator()
# Path to the current file
current_file_path = __file__
# Directory of the current file
current_directory = os.path.dirname(current_file_path)
path = current_directory + "/planning_op.py"
with open(path, "r", encoding="utf8") as f:
raw = f.read()
op.on_event(
{
"type": "INPUT",
"id": "code_modifier",
"value": pa.array(
[
{
"path": path,
"user_message": "change planning to make gimbal follow bounding box ",
},
]
),
"metadata": [],
},
print,
)
|