Skip to content

Commit 38f181f

Browse files
committed
update readme
1 parent 0429ef0 commit 38f181f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/LLM_ChangeData_Example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To run this example, you need:
2323
2. A LLM model with a thinking capability.
2424

2525
> [!TIP]
26-
> Our tests were conducted using the `Qwen/Qwen3-Omni-30B-A3B-Thinking` model, achieving over 99% recall and 100% accuracy.
26+
> Our tests were conducted using the [Qwen/Qwen3-Omni-30B-A3B-Thinking](https://huggingface.co/Qwen/Qwen3-Omni-30B-A3B-Thinking) model, achieving over 99% recall and 100% accuracy.
2727
>
2828
> For optimal results, it is recommended to use large language models with large parameters.
2929

doc/LLM_ForecastData_Example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To run this example, you need:
2222
2. A LLM model with a thinking capability.
2323

2424
> [!TIP]
25-
> Our tests were conducted using the `Qwen/Qwen3-Omni-30B-A3B-Thinking` model, achieving over 99% recall and 100% accuracy.
25+
> Our tests were conducted using the [Qwen/Qwen3-Omni-30B-A3B-Thinking](https://huggingface.co/Qwen/Qwen3-Omni-30B-A3B-Thinking) model, achieving over 99% recall and 100% accuracy.
2626
>
2727
> For optimal results, it is recommended to use large language models with large parameters.
2828

test/test_ai_transcripts.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class TestAITranscripts(unittest.TestCase):
1010
@classmethod
1111
def setUpClass(cls):
12-
cls.ticker = Ticker("JPM", http_proxy="http://127.0.0.1:33210", log_level=logging.DEBUG)
12+
cls.ticker = Ticker("NFLX", http_proxy="http://127.0.0.1:33210", log_level=logging.DEBUG)
1313

1414
key = Path(__file__).parent.joinpath("siliconflow_api.key").read_text(encoding="utf-8")
1515
cls.llm = OpenAI(
@@ -35,16 +35,16 @@ def test_analyze_financial_metrics_change_for_this_quarter_with_ai(self):
3535
transcripts = self.ticker.earning_call_transcripts()
3636
res = transcripts.analyze_financial_metrics_change_for_this_quarter_with_ai(
3737
2025,
38-
3,
38+
2,
3939
self.llm,
4040
OpenAIConfiguration(model='Qwen/Qwen3-Omni-30B-A3B-Thinking', temperature=0, top_p=0, tool_choice="auto"))
4141
print(res.to_string())
4242

4343
def test_analyze_financial_metrics_forecast_for_future_with_ai(self):
4444
transcripts = self.ticker.earning_call_transcripts()
4545
res = transcripts.analyze_financial_metrics_forecast_for_future_with_ai(
46-
2026,
47-
1,
46+
2025,
47+
2,
4848
self.llm,
4949
OpenAIConfiguration(model='Qwen/Qwen3-Omni-30B-A3B-Thinking', temperature=0, top_p=0, tool_choice="auto"))
5050
print(res.to_string())

0 commit comments

Comments
 (0)