Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaoyun Zhang committed Feb 14, 2024
1 parent 56777ee commit 42f4a2f
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ufo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
3 changes: 3 additions & 0 deletions ufo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

from . import ufo

if __name__ == "__main__":
Expand Down
3 changes: 3 additions & 0 deletions ufo/config/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

import os
import yaml

Expand Down
2 changes: 2 additions & 0 deletions ufo/llm/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
3 changes: 3 additions & 0 deletions ufo/llm/llm_call.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

import requests
import time
from ..config.config import load_config
Expand Down
3 changes: 3 additions & 0 deletions ufo/llm/prompt.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

from typing import List
import json

Expand Down
2 changes: 2 additions & 0 deletions ufo/module/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
3 changes: 3 additions & 0 deletions ufo/module/flow.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

import logging
import os
import time
Expand Down
3 changes: 3 additions & 0 deletions ufo/ufo.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

import argparse
from datetime import datetime

Expand Down
3 changes: 3 additions & 0 deletions ufo/ui_control/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

from typing import List
from .screenshot import *

Expand Down
3 changes: 3 additions & 0 deletions ufo/ui_control/control.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

import ast
import time
import warnings
Expand Down
3 changes: 3 additions & 0 deletions ufo/ui_control/screenshot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

from typing import List

from PIL import Image, ImageDraw, ImageFont, ImageGrab
Expand Down
3 changes: 3 additions & 0 deletions ufo/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

import base64
import json
import os
Expand Down

0 comments on commit 42f4a2f

Please sign in to comment.