File tree Expand file tree Collapse file tree 4 files changed +23
-18
lines changed
ovos_wolfram_alpha_solver Expand file tree Collapse file tree 4 files changed +23
-18
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## [ 0.0.2a1] ( https://github.com/OpenVoiceOS/ovos-wolfram-alpha-solver/tree/0.0.2a1 ) (2025-03-27)
4+
5+ [ Full Changelog] ( https://github.com/OpenVoiceOS/ovos-wolfram-alpha-solver/compare/0.0.1...0.0.2a1 )
6+
7+ ** Merged pull requests:**
8+
9+ - fix: requirements.txt [ \# 1] ( https://github.com/OpenVoiceOS/ovos-wolfram-alpha-solver/pull/1 ) ([ JarbasAl] ( https://github.com/JarbasAl ) )
10+
11+
12+
13+ \* * This Changelog was automatically generated by [ github_changelog_generator] ( https://github.com/github-changelog-generator/github-changelog-generator ) *
Original file line number Diff line number Diff line change 1- # Wikipedia Plugin
1+ # Wolfram Alpha Plugin
22
33``` python
4- from ovos_wikipedia_solver import WikipediaSolver
4+ from ovos_wolfram_alpha_solver import WolframAlphaSolver
55
6- s = WikipediaSolver()
7- print (s.get_spoken_answer(" quem é Elon Musk" , " pt" ))
6+ s = WolframAlphaSolver()
7+ print (s.spoken_answer(" quem é Elon Musk" , lang = " pt" ))
8+ print (s.spoken_answer(" venus" , lang = " en" ))
9+ print (s.spoken_answer(" elon musk" , lang = " en" ))
10+ print (s.spoken_answer(" mercury" , lang = " en" ))
811
9- query = " who is Isaac Newton"
10- print (s.extract_keyword(query, " en-us" ))
11- assert s.extract_keyword(query, " en-us" ) == " Isaac Newton"
12-
13- print (s.get_spoken_answer(" venus" , " en" ))
14- print (s.get_spoken_answer(" elon musk" , " en" ))
15- print (s.get_spoken_answer(" mercury" , " en" ))
16- ```
12+ ```
Original file line number Diff line number Diff line change 11# START_VERSION_BLOCK
22VERSION_MAJOR = 0
33VERSION_MINOR = 0
4- VERSION_BUILD = 1
5- VERSION_ALPHA = 0
4+ VERSION_BUILD = 2
5+ VERSION_ALPHA = 1
66# END_VERSION_BLOCK
Original file line number Diff line number Diff line change 11ovos-utils >= 0.7.0 ,< 1.0.0
22ovos-plugin-manager >= 0.0.26 ,< 1.0.0
3- ovos-bus-client >= 1.0.1
4- ovos-solver-bm25-plugin >= 0.0.1 ,< 1.0.0
5- crf_query_xtract >= 0.1.2 ,< 1.0.0
6- brill_postagger >= 0.1.2 ,< 1.0.0
You can’t perform that action at this time.
0 commit comments