jules / patch_constants.py
GraziePrego's picture
Upload folder using huggingface_hub
34450be verified
raw
history blame contribute delete
326 Bytes
with open("constants.ts", "r") as f:
content = f.read()
content = content.replace(
"{ id: 'jules-4', name: 'Jules 4', color: 'bg-fuchsia-600', profile: 'Greene-ctrl' }",
"{ id: 'jules-4', name: 'Jules 4', color: 'bg-fuchsia-600', profile: 'AUXteam' }"
)
with open("constants.ts", "w") as f:
f.write(content)