add ci workflows #1

Merged
godber merged 8 commits from add-ci into main 2025-08-13 21:03:42 -07:00
9 changed files with 355 additions and 9 deletions
Showing only changes of commit 091a2a0f97 - Show all commits

View File

@@ -1,4 +1,4 @@
from typing import List, Dict, Any
from typing import List
import plotly.colors as pc
from ..models.schemas import Document
@@ -29,5 +29,5 @@ class ColorMapper:
gray_value * 0.7 + rgb[1] * 0.3,
gray_value * 0.7 + rgb[2] * 0.3)
return f'rgb({int(gray_rgb[0])},{int(gray_rgb[1])},{int(gray_rgb[2])})'
except:
except: # noqa: E722
return 'rgb(128,128,128)'