We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 197703b commit 2b3e6dfCopy full SHA for 2b3e6df
1 file changed
genai/text_generation/test_text_generation_examples.py
@@ -31,6 +31,8 @@
31
import textgen_with_mute_video
32
import textgen_with_pdf
33
import textgen_with_txt
34
+import textgen_with_txt_2_0_flash_lite
35
+import textgen_with_txt_2_0_pro
36
import textgen_with_txt_img
37
import textgen_with_txt_stream
38
import textgen_with_video
@@ -135,3 +137,13 @@ def test_textgen_with_local_video() -> None:
135
137
def test_textgen_with_youtube_video() -> None:
136
138
response = textgen_with_youtube_video.generate_content()
139
assert response
140
+
141
142
+def test_textgen_with_txt_2_0_flash_lite() -> None:
143
+ response = textgen_with_txt_2_0_flash_lite.generate_content()
144
+ assert response
145
146
147
+def test_textgen_with_txt_2_0_pro() -> None:
148
+ response = textgen_with_txt_2_0_pro.generate_content()
149
0 commit comments