Update text_generator.py
Browse files- text_generator.py +2 -2
text_generator.py
CHANGED
|
@@ -15,8 +15,8 @@ class TextGenerationTool(Tool):
|
|
| 15 |
#generated_text = f"Generated text based on the prompt: '{prompt}'"
|
| 16 |
|
| 17 |
# Initialize the text generation pipeline
|
| 18 |
-
text_generator = pipeline("text-generation")
|
| 19 |
-
|
| 20 |
|
| 21 |
# Generate text based on a prompt
|
| 22 |
generated_text = text_generator(prompt, max_length=500, num_return_sequences=1, temperature=0.7)
|
|
|
|
| 15 |
#generated_text = f"Generated text based on the prompt: '{prompt}'"
|
| 16 |
|
| 17 |
# Initialize the text generation pipeline
|
| 18 |
+
#text_generator = pipeline("text-generation")
|
| 19 |
+
text_generator = pipeline(model="bigcode/starcoder")
|
| 20 |
|
| 21 |
# Generate text based on a prompt
|
| 22 |
generated_text = text_generator(prompt, max_length=500, num_return_sequences=1, temperature=0.7)
|