Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dev with master #512

Merged
merged 5 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function BountySettings({

const isGovernor = currentUser?.isGovernor;
const isDraftFunding = currentBounty?.isDraft || !currentBounty?.isFunded
const cancelableTime = currentBounty?.network?.cancelableTime;
const cancelableTime = +currentBounty?.network?.cancelableTime;
const isCancelable = +new Date() >= +new Date(+currentBounty.createdAt + cancelableTime);
const objViewProps = {
onEditIssue,
Expand Down
30 changes: 30 additions & 0 deletions helpers/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,36 @@ export const STATIC_URL_PATHS = [
"tasks",
];
export const BOUNTY_TAGS = [
{
type: "AI",
tags: [
"AI Agents",
"LLMs (Large Language Models)",
"Machine Learning Models",
"NLP (Natural Language Processing)",
"Computer Vision",
"Predictive Analytics",
"Data Labeling",
"Model Training",
"Model Optimization",
"Synthetic Data Generation",
"Speech Recognition",
"Image Processing",
"Reinforcement Learning",
"Recommendation Systems",
"Chatbots & Conversational AI",
"Model Fine-tuning",
"Data Preprocessing",
"Anomaly Detection",
"Edge AI",
"AI Infrastructure Setup",
"Model Deployment",
"Federated Learning",
"Explainable AI",
"Text-to-Image Generation",
"Automation & Workflow Orchestration",
],
},
{
type: "Technology",
tags: [
Expand Down
Loading