Spaces:
Sleeping
Sleeping
Update gemini/gemini_extractor.py
Browse files
gemini/gemini_extractor.py
CHANGED
|
@@ -78,4 +78,7 @@ class GeminiExtractor(Extractor):
|
|
| 78 |
|
| 79 |
contents.append(Content.from_text(response_content))
|
| 80 |
|
| 81 |
-
return contents
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
|
| 79 |
contents.append(Content.from_text(response_content))
|
| 80 |
|
| 81 |
+
return contents
|
| 82 |
+
|
| 83 |
+
def sample_input(self) -> Content:
|
| 84 |
+
return Content.from_text("Hello world, I am a good boy.")
|