Thanks to visit codestin.com
Credit goes to github.com

Skip to content

killdeys/omi

 
 

Repository files navigation

clear Traceback (most recent call last): File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in start(fakepyfile,mainpyfile) ~~~~~^^^^^^^^^^^^^^^^^^^^^^^ File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start exec(open(mainpyfile).read(), main.dict) ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "", line 1, in ModuleNotFoundError: No module named 'pyautogui'

[Program finished]

omi

Meet Omi, the world’s leading open-source AI wearable that captures conversations, gives summaires, action items and does actions for you. Simply connect Omi to your mobile device and enjoy automatic, high-quality transcriptions of meetings, chats, and voice memos wherever you are.

Omi CleanShot 2025-02-08 at 18 22 23

Discord Follow     Twitter Follow     License: MIT    GitHub Repo stars

Quick Start (2 min)

Download omi App

Get it on Google Play Download on the App Store

Create webhook using webhook.site and copy this url

In omi App:

Explore => Create an App Select Capability Paste Webhook URL Install App

Start speaking, you'll see Real-time transcript on webhook.site

In this repo:

Documentation:

Contributions

Licensing

Omi is available under MIT License import pyautogui import time import random

Пример функции для движения героя

def move_hero(direction): if direction == "up": pyautogui.keyDown("w") time.sleep(0.5) pyautogui.keyUp("w") elif direction == "down": pyautogui.keyDown("s") time.sleep(0.5) pyautogui.keyUp("s") elif direction == "left": pyautogui.keyDown("a") time.sleep(0.5) pyautogui.keyUp("a") elif direction == "right": pyautogui.keyDown("d") time.sleep(0.5) pyautogui.keyUp("d")

Пример функции для атаки

def attack(): pyautogui.press("j") # Основная атака time.sleep(0.1) pyautogui.press("k") # Скилл 1 time.sleep(0.1) pyautogui.press("l") # Скилл 2

Пример закупки предметов

def buy_items(): pyautogui.press("b") # Открыть магазин time.sleep(0.5) pyautogui.click(100, 200) # Закупка предмета (координаты нужно уточнить) pyautogui.press("b") # Закрыть магазин

Основной цикл бота

def main(): while True: move_hero(random.choice(["up", "down", "left", "right"])) attack() if random.random() > 0.5: buy_items() time.sleep(1)

if name == "main": main()

About

AI wearables. Put it on, speak, transcribe, automatically

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 68.9%
  • Dart 12.9%
  • Python 8.0%
  • C++ 4.8%
  • TypeScript 3.2%
  • Assembly 0.6%
  • Other 1.6%