awacke1 commited on
Commit
0b11a8c
1 Parent(s): 755d00e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +120 -85
app.py CHANGED
@@ -182,96 +182,131 @@ def display_glossary_entity(k):
182
  # - 🔎 **Query Use:** Input `?q=Palindrome` or `?query=Anagram` in URL for new challenges.
183
  # ''')
184
 
185
-
186
  roleplaying_glossary = {
187
- "👨‍👩‍👧‍👦 Top Family Games": {
188
- "Big Easy Busket": ["New Orleans culture", "Band formation", "Song performance", "Location strategy", "Diversity celebration", "3-day gameplay"],
189
- "Bonanza": [
190
- "Bean planting and harvesting",
191
- "Bid and trade interaction",
192
- "Quirky card artwork",
193
- "Hand management",
194
- "Negotiation skills",
195
- "Set collecting",
196
- "Fun with large groups",
197
- "Laughter and enjoyment"
198
- ],
199
- "Love Letter": [
200
- "Valentine's Day theme",
201
- "Simple gameplay mechanics",
202
- "Card effects and strategy",
203
- "Deduction to find love letter's sender",
204
- "Take that elements",
205
- "Fun for celebrating love",
206
- "Engagement and elimination",
207
- "Quick and engaging play"
208
- ],
209
- "The Novel Shogun": [
210
- "Japanese History 1600s",
211
- "Perrigrine Falcon",
212
- "Yellow Nape Amazon Parrot",
213
- "Bill Ackman on Investing",
214
- "Portugal History 1600s",
215
- "England History 1600s",
216
- "Building a Board with Different Points of View",
217
- "Canadian Pacific Railway",
218
- "Merchant Ships and Pilots"
219
- ],
220
- "Votes for Women": [
221
- "World Social Justice Day theme",
222
- "Card-driven game exploring American women's suffrage movement",
223
- "1 to 4 player game",
224
- "Released in 2022 by Fort Circle Games",
225
- "Covers 1848 to 1920 suffrage movement",
226
- "Includes competitive, cooperative, and solitary play modes",
227
- "Engages players in the ratification or rejection of the 19th Amendment",
228
- "Educational content on women's rights history",
229
- "Mechanics include area majority, dice rolling, cooperative play, and campaign-driven gameplay"
230
- ],
231
- },
232
- "📚 Traditional Word Games": {
233
- "Scrabble": ["Tile placement", "Word formation", "Point scoring"],
234
- "Boggle": ["Letter grid", "Timed word search", "Word length points"],
235
- "Crossword Puzzles": ["Clue solving", "Word filling", "Thematic puzzles"],
236
- "Banagrams": ["Tile shuffling", "Personal anagram puzzles", "Speed challenge"],
237
- "Hangman": ["Word guessing", "Letter guessing", "Limited attempts"],
238
- },
239
- "💡 Digital Word Games": {
240
- "Words With Friends": ["Digital Scrabble-like", "Online multiplayer", "Social interaction"],
241
- "Wordle": ["Daily word guessing", "Limited tries", "Shareable results"],
242
- "Letterpress": ["Competitive word search", "Territory control", "Strategic letter usage"],
243
- "Alphabear": ["Word formation", "Cute characters", "Puzzle strategy"],
244
- },
245
- "🎮 Game Design and Mechanics": {
246
- "Gameplay Dynamics": ["Word discovery", "Strategic placement", "Time pressure"],
247
- "Player Engagement": ["Daily challenges", "Leaderboards", "Community puzzles"],
248
- "Learning and Development": ["Vocabulary building", "Spelling practice", "Cognitive skills"],
249
- },
250
- "🌐 Online Platforms & Tools": {
251
- "Multiplayer Platforms": ["Real-time competition", "Asynchronous play", "Global matchmaking"],
252
- "Educational Tools": ["Learning modes", "Progress tracking", "Skill levels"],
253
- "Community Features": ["Forums", "Tips and tricks sharing", "Tournament organization"],
254
- },
255
- "🎖️ Competitive Scene": {
256
- "Scrabble Tournaments": ["Official rules", "National and international", "Professional rankings"],
257
- "Crossword Competitions": ["Speed solving", "Puzzle variety", "Prizes and recognition"],
258
- "Wordle Challenges": ["Streaks", "Perfect scores", "Community leaderboards"],
259
- },
260
- "📚 Lore & Background": {
261
- "History of Word Games": ["Evolution over time", "Cultural significance", "Famous games"],
262
- "Iconic Word Game Creators": ["Creators and designers", "Inspirational stories", "Game development"],
263
- "Word Games in Literature": ["Literary puzzles", "Wordplay in writing", "Famous examples"],
264
- },
265
- "🛠️ Resources & Development": {
266
- "Game Creation Tools": ["Word game generators", "Puzzle design software", "Community mods"],
267
- "Educational Resources": ["Vocabulary lists", "Word game strategies", "Learning methodologies"],
268
- "Digital Platforms": ["App development", "Online game hosting", "Social media integration"],
269
- },
270
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  }
272
 
273
 
274
 
 
275
  # HTML5 based Speech Synthesis (Text to Speech in Browser)
276
  @st.cache_resource
277
  def SpeechSynthesis(result):
 
182
  # - 🔎 **Query Use:** Input `?q=Palindrome` or `?query=Anagram` in URL for new challenges.
183
  # ''')
184
 
 
185
  roleplaying_glossary = {
186
+ "🤖 AI Concepts": {
187
+ "MoE (Mixture of Experts) 🧠": [
188
+ "Ensemble learning architecture",
189
+ "Multiple expert models",
190
+ "Gating network for expert selection",
191
+ "Improved performance and scalability",
192
+ "Used in large-scale machine learning"
193
+ ],
194
+ "Multi Agent Systems (MAS) 🤝": [
195
+ "Distributed AI systems",
196
+ "Autonomous agents interacting",
197
+ "Cooperative and competitive behavior",
198
+ "Decentralized problem-solving",
199
+ "Applications in robotics, simulations, and more"
200
+ ],
201
+ "Self Rewarding AI 🎁": [
202
+ "Intrinsic motivation for AI agents",
203
+ "Autonomous goal setting and achievement",
204
+ "Exploration and curiosity-driven learning",
205
+ "Potential for open-ended development",
206
+ "Research area in reinforcement learning"
207
+ ],
208
+ "Semantic and Episodic Memory 📚": [
209
+ "Two types of long-term memory",
210
+ "Semantic: facts and general knowledge",
211
+ "Episodic: personal experiences and events",
212
+ "Crucial for AI systems to understand and reason",
213
+ "Research in knowledge representation and retrieval"
214
+ ]
215
+ },
216
+ "🛠️ AI Tools & Platforms": {
217
+ "AutoGen 🔧": [
218
+ "Automated machine learning (AutoML) tool",
219
+ "Generates AI models based on requirements",
220
+ "Simplifies AI development process",
221
+ "Accessible to non-experts",
222
+ "Integration with various data sources"
223
+ ],
224
+ "ChatDev 💬": [
225
+ "Platform for building chatbots and conversational AI",
226
+ "Drag-and-drop interface for designing chat flows",
227
+ "Pre-built templates and integrations",
228
+ "Supports multiple messaging platforms",
229
+ "Analytics and performance tracking"
230
+ ],
231
+ "Omniverse 🌐": [
232
+ "Nvidia's 3D simulation and collaboration platform",
233
+ "Physically accurate virtual worlds",
234
+ "Supports AI training and testing",
235
+ "Used in industries like robotics, architecture, and gaming",
236
+ "Enables seamless collaboration and data exchange"
237
+ ],
238
+ "Lumiere 🎥": [
239
+ "AI-powered video analytics platform",
240
+ "Extracts insights and metadata from video content",
241
+ "Facial recognition and object detection",
242
+ "Sentiment analysis and scene understanding",
243
+ "Applications in security, media, and marketing"
244
+ ],
245
+ "SORA 🏗️": [
246
+ "Scalable Open Research Architecture",
247
+ "Framework for distributed AI research and development",
248
+ "Modular and extensible design",
249
+ "Facilitates collaboration and reproducibility",
250
+ "Supports various AI algorithms and models"
251
+ ]
252
+ },
253
+ "🎲 Roleplaying Games": {
254
+ "ShadowRun The Third Parallel 🌑": [
255
+ "Cyberpunk-themed tabletop RPG",
256
+ "Players take on roles of shadowrunners",
257
+ "Blend of magic and technology",
258
+ "Missions in a dystopian future setting",
259
+ "Includes rules for hacking, combat, and magic"
260
+ ],
261
+ "ShadowRun Falling Point 🏙️": [
262
+ "Expansion book for ShadowRun RPG",
263
+ "Introduces new locations and factions",
264
+ "Provides additional missions and storylines",
265
+ "Expands on the lore of the ShadowRun universe",
266
+ "Includes new gear, spells, and character options"
267
+ ],
268
+ "Marvel Champions The Card Game 🦸‍♂️": [
269
+ "Cooperative card game set in the Marvel universe",
270
+ "Players take on roles of Marvel heroes",
271
+ "Deck-building and resource management mechanics",
272
+ "Battle against villains and complete scenarios",
273
+ "Includes hero-specific cards and abilities"
274
+ ],
275
+ "Runescape Kingdoms the Roleplaying Game 🗡️": [
276
+ "Tabletop RPG based on the Runescape video game",
277
+ "Players explore the world of Gielinor",
278
+ "Includes rules for skills, combat, and quests",
279
+ "Adapt iconic locations and characters from the game",
280
+ "Allows for creating unique adventures in the Runescape setting"
281
+ ],
282
+ "Waterdeep Dungeon of the Mad Mage Maps and Miscellany 🗺️": [
283
+ "Supplement for the Dungeons & Dragons RPG",
284
+ "Provides maps and additional content for the Waterdeep: Dungeon of the Mad Mage adventure",
285
+ "Includes detailed maps of the dungeon levels",
286
+ "Offers new encounters, traps, and treasures",
287
+ "Enhances the gameplay experience for DMs and players"
288
+ ],
289
+ "Players Handbook Dungeons and Dragons 📘": [
290
+ "Core rulebook for the Dungeons & Dragons RPG",
291
+ "Provides rules for character creation, combat, and spellcasting",
292
+ "Includes detailed descriptions of races, classes, and backgrounds",
293
+ "Offers a wide range of options for customizing characters",
294
+ "Essential resource for players and Dungeon Masters"
295
+ ],
296
+ "Pathfinder Lost Omens World Guide 🌍": [
297
+ "Campaign setting sourcebook for the Pathfinder RPG",
298
+ "Explores the world of Golarion",
299
+ "Provides detailed information on nations, cultures, and religions",
300
+ "Includes new character options and equipment",
301
+ "Offers hooks and inspiration for creating adventures",
302
+ "Example: In the bustling city of Absalom, a group of adventurers gather at the Pathfinder Society headquarters. They are tasked with uncovering the secrets of an ancient artifact, believed to hold the key to a long-lost civilization. As they embarked on their journey across the Inner Sea region, they encountered rival factions, dangerous creatures, and hidden temples. Through their wit, skill, and teamwork, they ultimately unraveled the mystery and secured the artifact, cementing their place in the annals of the Pathfinder Society."
303
+ ]
304
+ }
305
  }
306
 
307
 
308
 
309
+
310
  # HTML5 based Speech Synthesis (Text to Speech in Browser)
311
  @st.cache_resource
312
  def SpeechSynthesis(result):