46 lines
418 KiB
JavaScript
46 lines
418 KiB
JavaScript
window.pdocSearch = (function(){
|
|
/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u<s.length;u++){var a=s[u];r[a]=this.pipeline.run(t.tokenizer(e[a]))}var l={};for(var c in o){var d=r[c]||r.any;if(d){var f=this.fieldSearch(d,c,o),h=o[c].boost;for(var p in f)f[p]=f[p]*h;for(var p in f)p in l?l[p]+=f[p]:l[p]=f[p]}}var v,g=[];for(var p in l)v={ref:p,score:l[p]},this.documentStore.hasDoc(p)&&(v.doc=this.documentStore.getDoc(p)),g.push(v);return g.sort(function(e,t){return t.score-e.score}),g},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=n[t].boost,s=null,u={};return 0!==r?(e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var r={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(s&&"AND"==i){var l={};for(var c in s)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(u,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in r?r[c]+=v:r[c]=v}},this),s=this.mergeScores(s,r,i)},this),s=this.coordNorm(s,u,e.length)):void 0},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,S=/(at|bl|iz)$/,x=new RegExp("([^aeiouylsz])\\1$"),w=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=S,a=x,l=w,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0}},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return!1;t=t[e[n]]}return!0},t.InvertedIndex.prototype.getNode=function(e){if(!e)return null;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return null;t=t[e[n]]}return t},t.InvertedIndex.prototype.getDocs=function(e){var t=this.getNode(e);return null==t?{}:t.docs},t.InvertedIndex.prototype.getTermFrequency=function(e,t){var n=this.getNode(e);return null==n?0:t in n.docs?n.docs[t].tf:0},t.InvertedIndex.prototype.getDocFreq=function(e){var t=this.getNode(e);return null==t?0:t.df},t.InvertedIndex.prototype.removeToken=function(e,t){if(e){var n=this.getNode(e);null!=n&&t in n.docs&&(delete n.docs[t],n.df-=1)}},t.InvertedIndex.prototype.expandToken=function(e,t,n){if(null==e||""==e)return[];var t=t||[];if(void 0==n&&(n=this.getNode(e),null==n))return t;n.df>0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e<arguments.length;e++)t=arguments[e],~this.indexOf(t)||this.elements.splice(this.locationFor(t),0,t);this.length=this.elements.length},lunr.SortedSet.prototype.toArray=function(){return this.elements.slice()},lunr.SortedSet.prototype.map=function(e,t){return this.elements.map(e,t)},lunr.SortedSet.prototype.forEach=function(e,t){return this.elements.forEach(e,t)},lunr.SortedSet.prototype.indexOf=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]<u[i]?n++:s[n]>u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o<r.length;o++)i.add(r[o]);return i},lunr.SortedSet.prototype.toJSON=function(){return this.toArray()},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
|
|
/** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"ums": {"fullname": "ums", "modulename": "ums", "kind": "module", "doc": "<p>The package <code>ums</code> contains the Agenten-Plattform, the implementations of the agents shall be created in the package <code>src</code>, see <a href=\"https://git.chai.uni-hamburg.de/UMS-Agenten/Agent-Template\">Agent-Template</a>.</p>\n\n<blockquote>\n <p>Side note: The classes with comments may be useful when implementing the agents.\n The classes without comments may be safe to ignore and are (only) used internally.</p>\n</blockquote>\n\n<ul>\n<li><code>ums.agent</code>\n<ul>\n<li>Contains the implementation of an agent for handling requests by the implementations in <code>src</code>.</li>\n<li>Check for running single tasks without using management.</li>\n</ul></li>\n<li><code>ums.example</code>\n<ul>\n<li>Contains a very simple examples for all types of agents.</li>\n<li>See <code>ums.example.example</code></li>\n</ul></li>\n<li><code>ums.management</code>\n<ul>\n<li>Contains the implementation of the management.</li>\n<li>Take a look at the web gui of the management, possibly at <a href=\"http://localhost:8080/\"><a href=\"http://localhost:8080/\">http://localhost:8080/</a></a> or <a href=\"http://localhost:8000/\"><a href=\"http://localhost:8000/\">http://localhost:8000/</a></a></li>\n</ul></li>\n<li><code>ums.utils</code>\n<ul>\n<li>Contains various utilities.</li>\n<li><code>ums.utils.const.SHARE_PATH</code> The path for shared files between all agents</li>\n<li><code>ums.utils.const.PERSIST_PATH</code> The path to store persistent data of an agent</li>\n<li><code>ums.utils.request.ManagementRequest</code> Run request to the management (only necessary in special cases, most requests done automatically by platform)</li>\n<li><code>ums.utils.schema</code> The schema (types) used in the files storing extracted data from plain data</li>\n<li><code>ums.utils.types</code> The types used in the communication between agent and management</li>\n</ul></li>\n</ul>\n"}, "ums.agent": {"fullname": "ums.agent", "modulename": "ums.agent", "kind": "module", "doc": "<h2 id=\"run-as-agent\">Run as Agent</h2>\n\n<p>The env. variable <code>AGENTS_LIST</code> is used to identify the agents classes/ task handlers.\nIt must contain he the package name and a variable name in this package divided by <code>:</code>. \nThen, the variable contains a list of agent classes (subclasses of <code>ums.agent.agent.BasicAgent</code>)</p>\n\n<p>For example <code>AGENTS_LIST=ums.example.example:AGENT_CLASSES</code>, then in file <code>./ums/example/example.py</code> a variable <code>AGENT_CLASSES</code> exists. \nOne line in this file, e.g., is <code>AGENT_CLASSES = [MyExtractAudioAgent, MyExtractImageAgent]</code>.</p>\n\n<p>When starting the Docker container of the agent, the classes specified in <code>AGENTS_LIST</code> are loaded and if the agent receives a task, the task is sent to the agent classes' <code>handle</code> methods.</p>\n\n<h2 id=\"run-single-task\">Run Single Task</h2>\n\n<p>For development it might be cumbersome to always require a running management container and sending messages. \nHence, tasks can be run manually from the terminal (still in the container and using the agent classes), but without having a management.</p>\n\n<p>This also uses the <code>AGENTS_LIST</code> env. variable, but the tasks are sent via command line:</p>\n\n<p>There are three ways to send a task (if the agent's Docker container is running):</p>\n\n<ul>\n<li><code>docker compose exec agent_all python -m ums.agent -d</code>\n<ul>\n<li>Run a dummy task</li>\n<li>Possibly <code>agent_all</code> needs to be changed to the service name (see <code>docker-compose.yml</code>) of the agent's Docker container</li>\n</ul></li>\n<li><code>cat ./msg.json | docker compose exec -T agent_all python -m ums.agent -i</code>\n<ul>\n<li>Send the task (json of <code>AgentMessage</code>) via STDIN from file <code>./msg.json</code> to the agent</li>\n</ul></li>\n<li><code>docker compose exec agent_all python -m ums.agent -f msg.json</code>\n<ul>\n<li>Get the task from the json file, the files are searched for by full name, in the shared, and the persistent directory.</li>\n</ul></li>\n</ul>\n\n<p>If the Agent's Docker container is not running, a temporary container can be started.\nFor the dummy message, the command would be <code>docker compose run --rm --entrypoint \"\" agent_all python -m ums.agent -d</code>.\n(Again, change <code>agent_all</code> for the service name in <code>docker-compose.yml</code>.)</p>\n"}, "ums.agent.agent": {"fullname": "ums.agent.agent", "modulename": "ums.agent.agent", "kind": "module", "doc": "<p></p>\n"}, "ums.agent.agent.AgentCapability": {"fullname": "ums.agent.agent.AgentCapability", "modulename": "ums.agent.agent", "qualname": "AgentCapability", "kind": "class", "doc": "<p>The three different capabilities an agent can have.</p>\n", "bases": "enum.Enum"}, "ums.agent.agent.AgentCapability.EXTRACT": {"fullname": "ums.agent.agent.AgentCapability.EXTRACT", "modulename": "ums.agent.agent", "qualname": "AgentCapability.EXTRACT", "kind": "variable", "doc": "<p></p>\n", "default_value": "<AgentCapability.EXTRACT: 'extract'>"}, "ums.agent.agent.AgentCapability.SOLVE": {"fullname": "ums.agent.agent.AgentCapability.SOLVE", "modulename": "ums.agent.agent", "qualname": "AgentCapability.SOLVE", "kind": "variable", "doc": "<p></p>\n", "default_value": "<AgentCapability.SOLVE: 'solve'>"}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"fullname": "ums.agent.agent.AgentCapability.GATEKEEPER", "modulename": "ums.agent.agent", "qualname": "AgentCapability.GATEKEEPER", "kind": "variable", "doc": "<p></p>\n", "default_value": "<AgentCapability.GATEKEEPER: 'gatekeeper'>"}, "ums.agent.agent.BasicAgent": {"fullname": "ums.agent.agent.BasicAgent", "modulename": "ums.agent.agent", "qualname": "BasicAgent", "kind": "class", "doc": "<p>A basic agent, each agent will be a subclass of this class.</p>\n", "bases": "abc.ABC"}, "ums.agent.agent.BasicAgent.agent_capability": {"fullname": "ums.agent.agent.BasicAgent.agent_capability", "modulename": "ums.agent.agent", "qualname": "BasicAgent.agent_capability", "kind": "function", "doc": "<p>Represents the capabilities of this agent, for messages/ tasks of this capability, the <code>handle</code> method will be called.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">AgentCapability</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.BasicAgent.before_response": {"fullname": "ums.agent.agent.BasicAgent.before_response", "modulename": "ums.agent.agent", "qualname": "BasicAgent.before_response", "kind": "function", "doc": "<p>This method is called before the response is sent.\nIf the method returns <code>False</code> no response will be sent. \nThus, by overwriting this method, a response can be prevented.</p>\n\n<p>The response to be sent is in <code>response</code> and <code>send_it</code> is a callable, which sends the response to the management if it gets called. \n(Hence, one may stop sending the response and later call <code>send_it()</code> to send the response.)</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">response</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span>,</span><span class=\"param\">\t<span class=\"n\">send_it</span><span class=\"p\">:</span> <span class=\"n\">Callable</span><span class=\"p\">[[],</span> <span class=\"n\">NoneType</span><span class=\"p\">]</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">bool</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.BasicAgent.message": {"fullname": "ums.agent.agent.BasicAgent.message", "modulename": "ums.agent.agent", "qualname": "BasicAgent.message", "kind": "function", "doc": "<p>Get the message this agent object is working on.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.BasicAgent.sub_riddle": {"fullname": "ums.agent.agent.BasicAgent.sub_riddle", "modulename": "ums.agent.agent", "qualname": "BasicAgent.sub_riddle", "kind": "function", "doc": "<p>Create a new sub-riddle for solving details of the current riddle.\nFor the sub-riddle, give a <code>riddle</code> and optionally, a selection of <code>data</code> items (default none) and a <code>status</code> (default <code>ums.utils.types.RiddleStatus()</code>).\nBy changing a status, different steps can be (de-)selected.</p>\n\n<p>Return the message of the sub-riddle or <code>false</code> on error.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">riddle</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">Riddle</span>,</span><span class=\"param\">\t<span class=\"n\">data</span><span class=\"p\">:</span> <span class=\"n\">List</span><span class=\"p\">[</span><span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span><span class=\"p\">]</span> <span class=\"o\">=</span> <span class=\"p\">[]</span>,</span><span class=\"param\">\t<span class=\"n\">status</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleStatus</span> <span class=\"o\">=</span> <span class=\"kc\">None</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span> <span class=\"o\">|</span> <span class=\"nb\">bool</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.BasicAgent.handle": {"fullname": "ums.agent.agent.BasicAgent.handle", "modulename": "ums.agent.agent", "qualname": "BasicAgent.handle", "kind": "function", "doc": "<p>Handle a single task of the agent, the arguments and return value depends on the actual task (see subclass)!</p>\n\n<p><strong>This is the method to implement!</strong></p>\n\n<p>The full message is available via <code>message()</code>, a sub riddle can be created with <code>sub_riddle()</code>.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"o\">*</span><span class=\"n\">args</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleInformation</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleInformation</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.ExtractAgent": {"fullname": "ums.agent.agent.ExtractAgent", "modulename": "ums.agent.agent", "qualname": "ExtractAgent", "kind": "class", "doc": "<p>An extraction agent.</p>\n", "bases": "BasicAgent"}, "ums.agent.agent.ExtractAgent.agent_capability": {"fullname": "ums.agent.agent.ExtractAgent.agent_capability", "modulename": "ums.agent.agent", "qualname": "ExtractAgent.agent_capability", "kind": "function", "doc": "<p>Represents the capabilities of this agent, for messages/ tasks of this capability, the <code>handle</code> method will be called.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">AgentCapability</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.ExtractAgent.extract_type": {"fullname": "ums.agent.agent.ExtractAgent.extract_type", "modulename": "ums.agent.agent", "qualname": "ExtractAgent.extract_type", "kind": "function", "doc": "<p>Represents the data this agent can process.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleDataType</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.ExtractAgent.handle": {"fullname": "ums.agent.agent.ExtractAgent.handle", "modulename": "ums.agent.agent", "qualname": "ExtractAgent.handle", "kind": "function", "doc": "<p>Process the item <code>data</code>, create extraction file and return <code>data</code> with populated <code>data.file_extracted</code>.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">data</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.ExtractTextAgent": {"fullname": "ums.agent.agent.ExtractTextAgent", "modulename": "ums.agent.agent", "qualname": "ExtractTextAgent", "kind": "class", "doc": "<p>An extraction agent for text, create a subclass for your agent.</p>\n", "bases": "ExtractAgent"}, "ums.agent.agent.ExtractTextAgent.extract_type": {"fullname": "ums.agent.agent.ExtractTextAgent.extract_type", "modulename": "ums.agent.agent", "qualname": "ExtractTextAgent.extract_type", "kind": "function", "doc": "<p>Represents the data this agent can process.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleDataType</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.ExtractAudioAgent": {"fullname": "ums.agent.agent.ExtractAudioAgent", "modulename": "ums.agent.agent", "qualname": "ExtractAudioAgent", "kind": "class", "doc": "<p>An extraction agent for audio, create a subclass for your agent.</p>\n", "bases": "ExtractAgent"}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"fullname": "ums.agent.agent.ExtractAudioAgent.extract_type", "modulename": "ums.agent.agent", "qualname": "ExtractAudioAgent.extract_type", "kind": "function", "doc": "<p>Represents the data this agent can process.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleDataType</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.ExtractImageAgent": {"fullname": "ums.agent.agent.ExtractImageAgent", "modulename": "ums.agent.agent", "qualname": "ExtractImageAgent", "kind": "class", "doc": "<p>An extraction agent for images, create a subclass for your agent.</p>\n", "bases": "ExtractAgent"}, "ums.agent.agent.ExtractImageAgent.extract_type": {"fullname": "ums.agent.agent.ExtractImageAgent.extract_type", "modulename": "ums.agent.agent", "qualname": "ExtractImageAgent.extract_type", "kind": "function", "doc": "<p>Represents the data this agent can process.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleDataType</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.SolveAgent": {"fullname": "ums.agent.agent.SolveAgent", "modulename": "ums.agent.agent", "qualname": "SolveAgent", "kind": "class", "doc": "<p>A solve agent, create a subclass for your agent.</p>\n", "bases": "BasicAgent"}, "ums.agent.agent.SolveAgent.agent_capability": {"fullname": "ums.agent.agent.SolveAgent.agent_capability", "modulename": "ums.agent.agent", "qualname": "SolveAgent.agent_capability", "kind": "function", "doc": "<p>Represents the capabilities of this agent, for messages/ tasks of this capability, the <code>handle</code> method will be called.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">AgentCapability</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.SolveAgent.handle": {"fullname": "ums.agent.agent.SolveAgent.handle", "modulename": "ums.agent.agent", "qualname": "SolveAgent.handle", "kind": "function", "doc": "<p>Solve the <code>riddle</code> using <code>data</code> and return a solution.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">riddle</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">Riddle</span>,</span><span class=\"param\">\t<span class=\"n\">data</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleSolution</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.GatekeeperAgent": {"fullname": "ums.agent.agent.GatekeeperAgent", "modulename": "ums.agent.agent", "qualname": "GatekeeperAgent", "kind": "class", "doc": "<p>A gatekeeper agent, create a subclass for your agent.</p>\n", "bases": "BasicAgent"}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"fullname": "ums.agent.agent.GatekeeperAgent.agent_capability", "modulename": "ums.agent.agent", "qualname": "GatekeeperAgent.agent_capability", "kind": "function", "doc": "<p>Represents the capabilities of this agent, for messages/ tasks of this capability, the <code>handle</code> method will be called.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">agent</span><span class=\"o\">.</span><span class=\"n\">AgentCapability</span>:</span></span>", "funcdef": "def"}, "ums.agent.agent.GatekeeperAgent.handle": {"fullname": "ums.agent.agent.GatekeeperAgent.handle", "modulename": "ums.agent.agent", "qualname": "GatekeeperAgent.handle", "kind": "function", "doc": "<p>Check the <code>solution</code> of <code>riddle</code> and return solution with populated <code>solution.accepted</code> and <code>solution.review</code>.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">solution</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleSolution</span>,</span><span class=\"param\">\t<span class=\"n\">riddle</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">Riddle</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleSolution</span>:</span></span>", "funcdef": "def"}, "ums.agent.main": {"fullname": "ums.agent.main", "modulename": "ums.agent.main", "kind": "module", "doc": "<p></p>\n"}, "ums.agent.main.WebMain": {"fullname": "ums.agent.main.WebMain", "modulename": "ums.agent.main", "qualname": "WebMain", "kind": "class", "doc": "<p></p>\n"}, "ums.agent.main.WebMain.msg_process": {"fullname": "ums.agent.main.WebMain.msg_process", "modulename": "ums.agent.main", "qualname": "WebMain.msg_process", "kind": "variable", "doc": "<p></p>\n"}, "ums.agent.process": {"fullname": "ums.agent.process", "modulename": "ums.agent.process", "kind": "module", "doc": "<p></p>\n"}, "ums.agent.process.MessageProcessor": {"fullname": "ums.agent.process.MessageProcessor", "modulename": "ums.agent.process", "qualname": "MessageProcessor", "kind": "class", "doc": "<p></p>\n"}, "ums.agent.process.MessageProcessor.__init__": {"fullname": "ums.agent.process.MessageProcessor.__init__", "modulename": "ums.agent.process", "qualname": "MessageProcessor.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">disable_messages</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">=</span> <span class=\"kc\">False</span></span>)</span>"}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"fullname": "ums.agent.process.MessageProcessor.MANAGEMENT_URL", "modulename": "ums.agent.process", "qualname": "MessageProcessor.MANAGEMENT_URL", "kind": "variable", "doc": "<p></p>\n", "default_value": "'http://127.0.0.1:80'"}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"fullname": "ums.agent.process.MessageProcessor.AGENTS_LIST", "modulename": "ums.agent.process", "qualname": "MessageProcessor.AGENTS_LIST", "kind": "variable", "doc": "<p></p>\n", "default_value": "'ums.example.example:AGENT_CLASSES'"}, "ums.agent.process.MessageProcessor.counts": {"fullname": "ums.agent.process.MessageProcessor.counts", "modulename": "ums.agent.process", "qualname": "MessageProcessor.counts", "kind": "variable", "doc": "<p></p>\n"}, "ums.agent.process.MessageProcessor.disable_messages": {"fullname": "ums.agent.process.MessageProcessor.disable_messages", "modulename": "ums.agent.process", "qualname": "MessageProcessor.disable_messages", "kind": "variable", "doc": "<p></p>\n"}, "ums.agent.process.MessageProcessor.agent_classes": {"fullname": "ums.agent.process.MessageProcessor.agent_classes", "modulename": "ums.agent.process", "qualname": "MessageProcessor.agent_classes", "kind": "variable", "doc": "<p></p>\n", "annotation": ": List[ums.agent.agent.BasicAgent]"}, "ums.agent.process.MessageProcessor.extract_agents": {"fullname": "ums.agent.process.MessageProcessor.extract_agents", "modulename": "ums.agent.process", "qualname": "MessageProcessor.extract_agents", "kind": "variable", "doc": "<p></p>\n", "annotation": ": List[ums.agent.agent.ExtractAgent]"}, "ums.agent.process.MessageProcessor.solve_agents": {"fullname": "ums.agent.process.MessageProcessor.solve_agents", "modulename": "ums.agent.process", "qualname": "MessageProcessor.solve_agents", "kind": "variable", "doc": "<p></p>\n", "annotation": ": List[ums.agent.agent.SolveAgent]"}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"fullname": "ums.agent.process.MessageProcessor.gatekeeper_agents", "modulename": "ums.agent.process", "qualname": "MessageProcessor.gatekeeper_agents", "kind": "variable", "doc": "<p></p>\n", "annotation": ": List[ums.agent.agent.GatekeeperAgent]"}, "ums.agent.process.MessageProcessor.new_message": {"fullname": "ums.agent.process.MessageProcessor.new_message", "modulename": "ums.agent.process", "qualname": "MessageProcessor.new_message", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">message</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span>,</span><span class=\"param\">\t<span class=\"n\">background_tasks</span><span class=\"p\">:</span> <span class=\"n\">fastapi</span><span class=\"o\">.</span><span class=\"n\">background</span><span class=\"o\">.</span><span class=\"n\">BackgroundTasks</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentResponse</span>:</span></span>", "funcdef": "def"}, "ums.example": {"fullname": "ums.example", "modulename": "ums.example", "kind": "module", "doc": "<p></p>\n"}, "ums.example.example": {"fullname": "ums.example.example", "modulename": "ums.example.example", "kind": "module", "doc": "<p></p>\n"}, "ums.example.example.MyExtractAudioAgent": {"fullname": "ums.example.example.MyExtractAudioAgent", "modulename": "ums.example.example", "qualname": "MyExtractAudioAgent", "kind": "class", "doc": "<p>An extraction agent for audio, create a subclass for your agent.</p>\n", "bases": "ums.agent.agent.ExtractAudioAgent"}, "ums.example.example.MyExtractAudioAgent.handle": {"fullname": "ums.example.example.MyExtractAudioAgent.handle", "modulename": "ums.example.example", "qualname": "MyExtractAudioAgent.handle", "kind": "function", "doc": "<p>Process the item <code>data</code>, create extraction file and return <code>data</code> with populated <code>data.file_extracted</code>.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">data</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span>:</span></span>", "funcdef": "def"}, "ums.example.example.MyExtractImageAgent": {"fullname": "ums.example.example.MyExtractImageAgent", "modulename": "ums.example.example", "qualname": "MyExtractImageAgent", "kind": "class", "doc": "<p>An extraction agent for images, create a subclass for your agent.</p>\n", "bases": "ums.agent.agent.ExtractImageAgent"}, "ums.example.example.MyExtractImageAgent.handle": {"fullname": "ums.example.example.MyExtractImageAgent.handle", "modulename": "ums.example.example", "qualname": "MyExtractImageAgent.handle", "kind": "function", "doc": "<p>Process the item <code>data</code>, create extraction file and return <code>data</code> with populated <code>data.file_extracted</code>.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">data</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span>:</span></span>", "funcdef": "def"}, "ums.example.example.MyExtractTextAgent": {"fullname": "ums.example.example.MyExtractTextAgent", "modulename": "ums.example.example", "qualname": "MyExtractTextAgent", "kind": "class", "doc": "<p>An extraction agent for text, create a subclass for your agent.</p>\n", "bases": "ums.agent.agent.ExtractTextAgent"}, "ums.example.example.MyExtractTextAgent.before_response": {"fullname": "ums.example.example.MyExtractTextAgent.before_response", "modulename": "ums.example.example", "qualname": "MyExtractTextAgent.before_response", "kind": "function", "doc": "<p>This method is called before the response is sent.\nIf the method returns <code>False</code> no response will be sent. \nThus, by overwriting this method, a response can be prevented.</p>\n\n<p>The response to be sent is in <code>response</code> and <code>send_it</code> is a callable, which sends the response to the management if it gets called. \n(Hence, one may stop sending the response and later call <code>send_it()</code> to send the response.)</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">response</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span>,</span><span class=\"param\">\t<span class=\"n\">send_it</span><span class=\"p\">:</span> <span class=\"n\">Callable</span><span class=\"p\">[[],</span> <span class=\"n\">NoneType</span><span class=\"p\">]</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">bool</span>:</span></span>", "funcdef": "def"}, "ums.example.example.MyExtractTextAgent.handle": {"fullname": "ums.example.example.MyExtractTextAgent.handle", "modulename": "ums.example.example", "qualname": "MyExtractTextAgent.handle", "kind": "function", "doc": "<p>Process the item <code>data</code>, create extraction file and return <code>data</code> with populated <code>data.file_extracted</code>.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">data</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span>:</span></span>", "funcdef": "def"}, "ums.example.example.MySolveAgent": {"fullname": "ums.example.example.MySolveAgent", "modulename": "ums.example.example", "qualname": "MySolveAgent", "kind": "class", "doc": "<p>A solve agent, create a subclass for your agent.</p>\n", "bases": "ums.agent.agent.SolveAgent"}, "ums.example.example.MySolveAgent.handle": {"fullname": "ums.example.example.MySolveAgent.handle", "modulename": "ums.example.example", "qualname": "MySolveAgent.handle", "kind": "function", "doc": "<p>Solve the <code>riddle</code> using <code>data</code> and return a solution.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">riddle</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">Riddle</span>,</span><span class=\"param\">\t<span class=\"n\">data</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleData</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleSolution</span>:</span></span>", "funcdef": "def"}, "ums.example.example.MyGatekeeperAgent": {"fullname": "ums.example.example.MyGatekeeperAgent", "modulename": "ums.example.example", "qualname": "MyGatekeeperAgent", "kind": "class", "doc": "<p>A gatekeeper agent, create a subclass for your agent.</p>\n", "bases": "ums.agent.agent.GatekeeperAgent"}, "ums.example.example.MyGatekeeperAgent.handle": {"fullname": "ums.example.example.MyGatekeeperAgent.handle", "modulename": "ums.example.example", "qualname": "MyGatekeeperAgent.handle", "kind": "function", "doc": "<p>Check the <code>solution</code> of <code>riddle</code> and return solution with populated <code>solution.accepted</code> and <code>solution.review</code>.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">solution</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleSolution</span>,</span><span class=\"param\">\t<span class=\"n\">riddle</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">Riddle</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">RiddleSolution</span>:</span></span>", "funcdef": "def"}, "ums.example.example.AGENT_CLASSES": {"fullname": "ums.example.example.AGENT_CLASSES", "modulename": "ums.example.example", "qualname": "AGENT_CLASSES", "kind": "variable", "doc": "<p></p>\n", "default_value": "[<class 'ums.example.example.MyExtractAudioAgent'>, <class 'ums.example.example.MyExtractImageAgent'>, <class 'ums.example.example.MyExtractTextAgent'>, <class 'ums.example.example.MySolveAgent'>, <class 'ums.example.example.MyGatekeeperAgent'>]"}, "ums.management": {"fullname": "ums.management", "modulename": "ums.management", "kind": "module", "doc": "<p></p>\n"}, "ums.management.db": {"fullname": "ums.management.db", "modulename": "ums.management.db", "kind": "module", "doc": "<p></p>\n"}, "ums.management.db.DB": {"fullname": "ums.management.db.DB", "modulename": "ums.management.db", "qualname": "DB", "kind": "class", "doc": "<p></p>\n"}, "ums.management.db.DB.db": {"fullname": "ums.management.db.DB.db", "modulename": "ums.management.db", "qualname": "DB.db", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.db.DB.db_lock": {"fullname": "ums.management.db.DB.db_lock", "modulename": "ums.management.db", "qualname": "DB.db_lock", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.db.DB.add_message": {"fullname": "ums.management.db.DB.add_message", "modulename": "ums.management.db", "qualname": "DB.add_message", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">sender</span><span class=\"p\">:</span> <span class=\"nb\">str</span>,</span><span class=\"param\">\t<span class=\"n\">recipient</span><span class=\"p\">:</span> <span class=\"nb\">str</span>,</span><span class=\"param\">\t<span class=\"n\">message</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span>,</span><span class=\"param\">\t<span class=\"n\">processed</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">=</span> <span class=\"kc\">False</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">int</span>:</span></span>", "funcdef": "def"}, "ums.management.db.DB.set_processed": {"fullname": "ums.management.db.DB.set_processed", "modulename": "ums.management.db", "qualname": "DB.set_processed", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">count</span><span class=\"p\">:</span> <span class=\"nb\">int</span>, </span><span class=\"param\"><span class=\"n\">processed</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">=</span> <span class=\"kc\">True</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">bool</span>:</span></span>", "funcdef": "def"}, "ums.management.db.DB.set_solution": {"fullname": "ums.management.db.DB.set_solution", "modulename": "ums.management.db", "qualname": "DB.set_solution", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">count</span><span class=\"p\">:</span> <span class=\"nb\">int</span>, </span><span class=\"param\"><span class=\"n\">solution</span><span class=\"p\">:</span> <span class=\"nb\">bool</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">bool</span>:</span></span>", "funcdef": "def"}, "ums.management.db.DB.iterate": {"fullname": "ums.management.db.DB.iterate", "modulename": "ums.management.db", "qualname": "DB.iterate", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"nb\">id</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">sender</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">recipient</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">processed</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">solution</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">time_after</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">time_before</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">limit</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">=</span> <span class=\"mi\">20</span>,</span><span class=\"param\">\t<span class=\"n\">offset</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">=</span> <span class=\"mi\">0</span>,</span><span class=\"param\">\t<span class=\"n\">_count_only</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">=</span> <span class=\"kc\">False</span></span><span class=\"return-annotation\">) -> <span class=\"n\">Generator</span><span class=\"p\">[</span><span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">MessageDbRow</span> <span class=\"o\">|</span> <span class=\"nb\">int</span><span class=\"p\">,</span> <span class=\"n\">NoneType</span><span class=\"p\">,</span> <span class=\"n\">NoneType</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "ums.management.db.DB.len": {"fullname": "ums.management.db.DB.len", "modulename": "ums.management.db", "qualname": "DB.len", "kind": "function", "doc": "<p>See <code>DB.iterate</code> for possible values of <code>kwargs</code>.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">int</span>:</span></span>", "funcdef": "def"}, "ums.management.db.DB.by_count": {"fullname": "ums.management.db.DB.by_count", "modulename": "ums.management.db", "qualname": "DB.by_count", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">count</span><span class=\"p\">:</span> <span class=\"nb\">int</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">MessageDbRow</span> <span class=\"o\">|</span> <span class=\"kc\">None</span>:</span></span>", "funcdef": "def"}, "ums.management.interface": {"fullname": "ums.management.interface", "modulename": "ums.management.interface", "kind": "module", "doc": "<p></p>\n"}, "ums.management.interface.Interface": {"fullname": "ums.management.interface.Interface", "modulename": "ums.management.interface", "qualname": "Interface", "kind": "class", "doc": "<p></p>\n"}, "ums.management.interface.Interface.__init__": {"fullname": "ums.management.interface.Interface.__init__", "modulename": "ums.management.interface", "qualname": "Interface.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"n\">template</span><span class=\"p\">:</span> <span class=\"n\">starlette</span><span class=\"o\">.</span><span class=\"n\">templating</span><span class=\"o\">.</span><span class=\"n\">Jinja2Templates</span>,</span><span class=\"param\">\t<span class=\"n\">db</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">management</span><span class=\"o\">.</span><span class=\"n\">db</span><span class=\"o\">.</span><span class=\"n\">DB</span></span>)</span>"}, "ums.management.interface.Interface.template": {"fullname": "ums.management.interface.Interface.template", "modulename": "ums.management.interface", "qualname": "Interface.template", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.interface.Interface.db": {"fullname": "ums.management.interface.Interface.db", "modulename": "ums.management.interface", "qualname": "Interface.db", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.interface.Interface.router": {"fullname": "ums.management.interface.Interface.router", "modulename": "ums.management.interface", "qualname": "Interface.router", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.main": {"fullname": "ums.management.main", "modulename": "ums.management.main", "kind": "module", "doc": "<p></p>\n"}, "ums.management.main.WebMain": {"fullname": "ums.management.main.WebMain", "modulename": "ums.management.main", "qualname": "WebMain", "kind": "class", "doc": "<p></p>\n"}, "ums.management.main.WebMain.db": {"fullname": "ums.management.main.WebMain.db", "modulename": "ums.management.main", "qualname": "WebMain.db", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.main.WebMain.msg_process": {"fullname": "ums.management.main.WebMain.msg_process", "modulename": "ums.management.main", "qualname": "WebMain.msg_process", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.process": {"fullname": "ums.management.process", "modulename": "ums.management.process", "kind": "module", "doc": "<p></p>\n"}, "ums.management.process.MessageProcessor": {"fullname": "ums.management.process.MessageProcessor", "modulename": "ums.management.process", "qualname": "MessageProcessor", "kind": "class", "doc": "<p></p>\n"}, "ums.management.process.MessageProcessor.__init__": {"fullname": "ums.management.process.MessageProcessor.__init__", "modulename": "ums.management.process", "qualname": "MessageProcessor.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">db</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">management</span><span class=\"o\">.</span><span class=\"n\">db</span><span class=\"o\">.</span><span class=\"n\">DB</span></span>)</span>"}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"fullname": "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS", "modulename": "ums.management.process", "qualname": "MessageProcessor.SOLUTION_MAX_TRIALS", "kind": "variable", "doc": "<p></p>\n", "default_value": "5"}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"fullname": "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS", "modulename": "ums.management.process", "qualname": "MessageProcessor.MESSAGE_MAX_CONTACTS", "kind": "variable", "doc": "<p></p>\n", "default_value": "100"}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"fullname": "ums.management.process.MessageProcessor.MANAGEMENT_URL", "modulename": "ums.management.process", "qualname": "MessageProcessor.MANAGEMENT_URL", "kind": "variable", "doc": "<p></p>\n", "default_value": "'http://127.0.0.1:80'"}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"fullname": "ums.management.process.MessageProcessor.AGENTS_PROCESS", "modulename": "ums.management.process", "qualname": "MessageProcessor.AGENTS_PROCESS", "kind": "variable", "doc": "<p></p>\n", "default_value": "('',)"}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"fullname": "ums.management.process.MessageProcessor.AGENTS_SOLVE", "modulename": "ums.management.process", "qualname": "MessageProcessor.AGENTS_SOLVE", "kind": "variable", "doc": "<p></p>\n", "default_value": "('',)"}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"fullname": "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER", "modulename": "ums.management.process", "qualname": "MessageProcessor.AGENTS_GATEKEEPER", "kind": "variable", "doc": "<p></p>\n", "default_value": "('',)"}, "ums.management.process.MessageProcessor.db": {"fullname": "ums.management.process.MessageProcessor.db", "modulename": "ums.management.process", "qualname": "MessageProcessor.db", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.process.MessageProcessor.management_name": {"fullname": "ums.management.process.MessageProcessor.management_name", "modulename": "ums.management.process", "qualname": "MessageProcessor.management_name", "kind": "variable", "doc": "<p></p>\n"}, "ums.management.process.MessageProcessor.new_message": {"fullname": "ums.management.process.MessageProcessor.new_message", "modulename": "ums.management.process", "qualname": "MessageProcessor.new_message", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">sender</span><span class=\"p\">:</span> <span class=\"nb\">str</span>,</span><span class=\"param\">\t<span class=\"n\">receiver</span><span class=\"p\">:</span> <span class=\"nb\">str</span>,</span><span class=\"param\">\t<span class=\"n\">message</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span>,</span><span class=\"param\">\t<span class=\"n\">background_tasks</span><span class=\"p\">:</span> <span class=\"n\">fastapi</span><span class=\"o\">.</span><span class=\"n\">background</span><span class=\"o\">.</span><span class=\"n\">BackgroundTasks</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentResponse</span>:</span></span>", "funcdef": "def"}, "ums.utils": {"fullname": "ums.utils", "modulename": "ums.utils", "kind": "module", "doc": "<p></p>\n"}, "ums.utils.logger": {"fullname": "ums.utils.logger", "modulename": "ums.utils", "qualname": "logger", "kind": "variable", "doc": "<p></p>\n", "default_value": "<Logger UMS Agenten (WARNING)>"}, "ums.utils.const": {"fullname": "ums.utils.const", "modulename": "ums.utils.const", "kind": "module", "doc": "<p>This file contains shared constants.\nSee the content ...</p>\n"}, "ums.utils.const.BASE_PATH": {"fullname": "ums.utils.const.BASE_PATH", "modulename": "ums.utils.const", "qualname": "BASE_PATH", "kind": "variable", "doc": "<p></p>\n", "default_value": "'/ums-agenten'"}, "ums.utils.const.SHARE_PATH": {"fullname": "ums.utils.const.SHARE_PATH", "modulename": "ums.utils.const", "qualname": "SHARE_PATH", "kind": "variable", "doc": "<p></p>\n", "default_value": "'/ums-agenten/share'"}, "ums.utils.const.PERSIST_PATH": {"fullname": "ums.utils.const.PERSIST_PATH", "modulename": "ums.utils.const", "qualname": "PERSIST_PATH", "kind": "variable", "doc": "<p></p>\n", "default_value": "'/ums-agenten/persist'"}, "ums.utils.const.PUBLIC_PATH": {"fullname": "ums.utils.const.PUBLIC_PATH", "modulename": "ums.utils.const", "qualname": "PUBLIC_PATH", "kind": "variable", "doc": "<p></p>\n", "default_value": "'/ums-agenten/plattform/web/public'"}, "ums.utils.const.TEMPLATE_PATH": {"fullname": "ums.utils.const.TEMPLATE_PATH", "modulename": "ums.utils.const", "qualname": "TEMPLATE_PATH", "kind": "variable", "doc": "<p></p>\n", "default_value": "'/ums-agenten/plattform/web/templates'"}, "ums.utils.const.LOG_FILE": {"fullname": "ums.utils.const.LOG_FILE", "modulename": "ums.utils.const", "qualname": "LOG_FILE", "kind": "variable", "doc": "<p></p>\n", "default_value": "'/ums-agenten/persist/ums.log'"}, "ums.utils.const.LOG_LEVEL": {"fullname": "ums.utils.const.LOG_LEVEL", "modulename": "ums.utils.const", "qualname": "LOG_LEVEL", "kind": "variable", "doc": "<p></p>\n", "default_value": "20"}, "ums.utils.functions": {"fullname": "ums.utils.functions", "modulename": "ums.utils.functions", "kind": "module", "doc": "<p></p>\n"}, "ums.utils.functions.list_path": {"fullname": "ums.utils.functions.list_path", "modulename": "ums.utils.functions", "qualname": "list_path", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">path</span><span class=\"p\">:</span> <span class=\"nb\">str</span></span><span class=\"return-annotation\">) -> <span class=\"n\">List</span><span class=\"p\">[</span><span class=\"nb\">str</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "ums.utils.functions.list_shared": {"fullname": "ums.utils.functions.list_shared", "modulename": "ums.utils.functions", "qualname": "list_shared", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"nb\">filter</span><span class=\"p\">:</span> <span class=\"n\">Callable</span> <span class=\"o\">=</span> <span class=\"o\"><</span><span class=\"n\">function</span> <span class=\"o\"><</span><span class=\"k\">lambda</span><span class=\"o\">>></span></span><span class=\"return-annotation\">) -> <span class=\"n\">List</span><span class=\"p\">[</span><span class=\"nb\">str</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "ums.utils.functions.list_shared_data": {"fullname": "ums.utils.functions.list_shared_data", "modulename": "ums.utils.functions", "qualname": "list_shared_data", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "ums.utils.functions.list_shared_schema": {"fullname": "ums.utils.functions.list_shared_schema", "modulename": "ums.utils.functions", "qualname": "list_shared_schema", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "ums.utils.request": {"fullname": "ums.utils.request", "modulename": "ums.utils.request", "kind": "module", "doc": "<p>Access to the management, e.g., get the list of messages and single messages.\nManually send messages (if necessary, the platforms should do this). </p>\n\n<h3 id=\"example\">Example</h3>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code> <span class=\"n\">m_request</span> <span class=\"o\">=</span> <span class=\"n\">ManagementRequest</span><span class=\"p\">()</span>\n\n <span class=\"n\">m_request</span><span class=\"o\">.</span><span class=\"n\">get_message</span><span class=\"p\">(</span><span class=\"n\">count</span><span class=\"o\">=</span><span class=\"mi\">12</span><span class=\"p\">)</span>\n <span class=\"c1\"># MessageDbRow(count=12 sender='from' recipient='to' ...</span>\n\n <span class=\"n\">m_request</span><span class=\"o\">.</span><span class=\"n\">list_messages</span><span class=\"p\">(</span><span class=\"nb\">id</span><span class=\"o\">=</span><span class=\"s2\">"test"</span><span class=\"p\">,</span> <span class=\"n\">limit</span><span class=\"o\">=</span><span class=\"mi\">2</span><span class=\"p\">)</span>\n <span class=\"c1\"># [</span>\n <span class=\"c1\"># MessageDbRow(count=7256, sender='management', ...),</span>\n <span class=\"c1\"># MessageDbRow(count=7255, sender='management', ...),</span>\n <span class=\"c1\"># ]</span>\n\n <span class=\"n\">m_request</span><span class=\"o\">.</span><span class=\"n\">total_messages</span><span class=\"p\">(</span><span class=\"nb\">id</span><span class=\"o\">=</span><span class=\"s2\">"test"</span><span class=\"p\">)</span>\n <span class=\"c1\"># 31</span>\n</code></pre>\n</div>\n\n<p>See also <code>ums.example.__main__</code> and run in Docker via <code>docker compose exec management python -m ums.example</code></p>\n"}, "ums.utils.request.RequestException": {"fullname": "ums.utils.request.RequestException", "modulename": "ums.utils.request", "qualname": "RequestException", "kind": "class", "doc": "<p>Raised on http and similar errors.</p>\n", "bases": "builtins.Exception"}, "ums.utils.request.ManagementRequest": {"fullname": "ums.utils.request.ManagementRequest", "modulename": "ums.utils.request", "qualname": "ManagementRequest", "kind": "class", "doc": "<p></p>\n"}, "ums.utils.request.ManagementRequest.__init__": {"fullname": "ums.utils.request.ManagementRequest.__init__", "modulename": "ums.utils.request", "qualname": "ManagementRequest.__init__", "kind": "function", "doc": "<p>If <code>allow_lazy</code> is active, the type checking (by pydantic) is less strict. \nE.g. it does not require that all files in the data section of messages must exist on the file system.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">allow_lazy</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">=</span> <span class=\"kc\">True</span></span>)</span>"}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"fullname": "ums.utils.request.ManagementRequest.MANAGEMENT_URL", "modulename": "ums.utils.request", "qualname": "ManagementRequest.MANAGEMENT_URL", "kind": "variable", "doc": "<p></p>\n", "default_value": "'http://127.0.0.1:80'"}, "ums.utils.request.ManagementRequest.get_message": {"fullname": "ums.utils.request.ManagementRequest.get_message", "modulename": "ums.utils.request", "qualname": "ManagementRequest.get_message", "kind": "function", "doc": "<p>Get a message (like a table row) from the management by using the <code>count</code>.</p>\n\n<p>May raise <code>RequestException</code>.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">count</span><span class=\"p\">:</span> <span class=\"nb\">int</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">MessageDbRow</span>:</span></span>", "funcdef": "def"}, "ums.utils.request.ManagementRequest.list_messages": {"fullname": "ums.utils.request.ManagementRequest.list_messages", "modulename": "ums.utils.request", "qualname": "ManagementRequest.list_messages", "kind": "function", "doc": "<p>Get the rows in the tables as list of messages.\nThe arguments are used for filtering.</p>\n\n<p>May raise <code>RequestException</code>.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"nb\">id</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">sender</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">recipient</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">processed</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">solution</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">time_after</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">time_before</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">limit</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">=</span> <span class=\"mi\">10</span>,</span><span class=\"param\">\t<span class=\"n\">offset</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">=</span> <span class=\"mi\">0</span></span><span class=\"return-annotation\">) -> <span class=\"n\">List</span><span class=\"p\">[</span><span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">MessageDbRow</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "ums.utils.request.ManagementRequest.total_messages": {"fullname": "ums.utils.request.ManagementRequest.total_messages", "modulename": "ums.utils.request", "qualname": "ManagementRequest.total_messages", "kind": "function", "doc": "<p>Get the total number of rows in the tables matching the filters.</p>\n\n<p>May raise <code>RequestException</code>.</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"nb\">id</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">sender</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">recipient</span><span class=\"p\">:</span> <span class=\"nb\">str</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">processed</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">solution</span><span class=\"p\">:</span> <span class=\"nb\">bool</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">time_after</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span>,</span><span class=\"param\">\t<span class=\"n\">time_before</span><span class=\"p\">:</span> <span class=\"nb\">int</span> <span class=\"o\">|</span> <span class=\"kc\">None</span> <span class=\"o\">=</span> <span class=\"kc\">None</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">int</span>:</span></span>", "funcdef": "def"}, "ums.utils.request.ManagementRequest.send_message": {"fullname": "ums.utils.request.ManagementRequest.send_message", "modulename": "ums.utils.request", "qualname": "ManagementRequest.send_message", "kind": "function", "doc": "<p>Send the <code>message</code> to the management and return the management's agent response.\n(On error an agent response with error message).</p>\n", "signature": "<span class=\"signature pdoc-code multiline\">(<span class=\"param\">\t<span class=\"bp\">self</span>,</span><span class=\"param\">\t<span class=\"n\">message</span><span class=\"p\">:</span> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentMessage</span></span><span class=\"return-annotation\">) -> <span class=\"n\">ums</span><span class=\"o\">.</span><span class=\"n\">utils</span><span class=\"o\">.</span><span class=\"n\">types</span><span class=\"o\">.</span><span class=\"n\">AgentResponse</span>:</span></span>", "funcdef": "def"}, "ums.utils.schema": {"fullname": "ums.utils.schema", "modulename": "ums.utils.schema", "kind": "module", "doc": "<p>This represents the basic types used for representing extracted information from the data.\nThe types are implemented using <a href=\"https://docs.pydantic.dev/\">pydantic</a>.\nIt provides validation, allow JSON serialization and works well with <a href=\"https://fastapi.tiangolo.com/\">FastAPI</a> which is used internally for the http request between the agents and the management.</p>\n"}, "ums.utils.schema.ExtractionSchema": {"fullname": "ums.utils.schema.ExtractionSchema", "modulename": "ums.utils.schema", "qualname": "ExtractionSchema", "kind": "class", "doc": "<p>This is the basic class used as superclass for all extracted information from data items.</p>\n", "bases": "pydantic.main.BaseModel"}, "ums.utils.types": {"fullname": "ums.utils.types", "modulename": "ums.utils.types", "kind": "module", "doc": "<p>This represents the basic types used to interact with the management.\nThe types are implemented using <a href=\"https://docs.pydantic.dev/\">pydantic</a>.\nIt provides validation, allow JSON serialization and works well with <a href=\"https://fastapi.tiangolo.com/\">FastAPI</a> which is used internally for the http request between the agents and the management.</p>\n\n<h3 id=\"example\">Example</h3>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code> <span class=\"n\">ex</span> <span class=\"o\">=</span> <span class=\"n\">AgentMessage</span><span class=\"p\">(</span>\n <span class=\"nb\">id</span><span class=\"o\">=</span><span class=\"s2\">"ex1"</span><span class=\"p\">,</span>\n <span class=\"n\">riddle</span><span class=\"o\">=</span><span class=\"p\">{</span>\n <span class=\"s2\">"context"</span><span class=\"p\">:</span><span class=\"s2\">"Example 1"</span><span class=\"p\">,</span>\n <span class=\"s2\">"question"</span><span class=\"p\">:</span><span class=\"s2\">"Get the name of the person."</span>\n <span class=\"p\">},</span>\n <span class=\"n\">data</span><span class=\"o\">=</span><span class=\"p\">[</span>\n <span class=\"n\">RiddleData</span><span class=\"p\">(</span>\n <span class=\"nb\">type</span><span class=\"o\">=</span><span class=\"n\">RiddleDataType</span><span class=\"o\">.</span><span class=\"n\">TEXT</span><span class=\"p\">,</span>\n <span class=\"n\">file_plain</span><span class=\"o\">=</span><span class=\"s2\">"./cv.txt"</span>\n <span class=\"p\">)</span>\n <span class=\"p\">]</span>\n <span class=\"p\">)</span>\n <span class=\"n\">ex</span><span class=\"o\">.</span><span class=\"n\">status</span><span class=\"o\">.</span><span class=\"n\">extract</span><span class=\"o\">.</span><span class=\"n\">required</span> <span class=\"o\">=</span> <span class=\"kc\">False</span>\n</code></pre>\n</div>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"id"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s2\">"ex1"</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"sub_ids"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">[],</span>\n<span class=\"w\"> </span><span class=\"nt\">"riddle"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"context"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s2\">"Example 1"</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"question"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s2\">"Get the name of the person."</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"solutions_before"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">[]</span>\n<span class=\"w\"> </span><span class=\"p\">},</span>\n<span class=\"w\"> </span><span class=\"nt\">"solution"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">null</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"data"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">[</span>\n<span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"type"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s2\">"text"</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"file_plain"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s2\">"/ums-agenten/share/cv.txt"</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"file_extracted"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">null</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"prompt"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">null</span>\n<span class=\"w\"> </span><span class=\"p\">}</span>\n<span class=\"w\"> </span><span class=\"p\">],</span>\n<span class=\"w\"> </span><span class=\"nt\">"status"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"extract"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"required"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">false</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"finished"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">false</span>\n<span class=\"w\"> </span><span class=\"p\">},</span>\n<span class=\"w\"> </span><span class=\"nt\">"solve"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"required"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">true</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"finished"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">false</span>\n<span class=\"w\"> </span><span class=\"p\">},</span>\n<span class=\"w\"> </span><span class=\"nt\">"validate"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"required"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">true</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"finished"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">false</span>\n<span class=\"w\"> </span><span class=\"p\">},</span>\n<span class=\"w\"> </span><span class=\"nt\">"trial"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"solved"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">false</span>\n<span class=\"w\"> </span><span class=\"p\">},</span>\n<span class=\"w\"> </span><span class=\"nt\">"contacts"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"mi\">0</span>\n<span class=\"w\"> </span><span class=\"p\">}</span>\n</code></pre>\n</div>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code> <span class=\"n\">ex</span><span class=\"o\">.</span><span class=\"n\">solution</span> <span class=\"o\">=</span> <span class=\"n\">RiddleSolution</span><span class=\"p\">(</span>\n <span class=\"n\">solution</span><span class=\"o\">=</span><span class=\"s2\">"Otto"</span><span class=\"p\">,</span>\n <span class=\"n\">explanation</span><span class=\"o\">=</span><span class=\"s2\">"Written in line 6 after 'Name:'"</span>\n <span class=\"p\">)</span>\n</code></pre>\n</div>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"err\">...</span>\n<span class=\"w\"> </span><span class=\"nt\">"solution"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\"> </span><span class=\"nt\">"solution"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s2\">"Otto"</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"explanation"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s2\">"Written in line 6 after 'Name:'"</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"used_data"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\">[],</span>\n<span class=\"w\"> </span><span class=\"nt\">"accepted"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">false</span><span class=\"p\">,</span>\n<span class=\"w\"> </span><span class=\"nt\">"review"</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"kc\">null</span>\n<span class=\"w\"> </span><span class=\"p\">},</span>\n<span class=\"w\"> </span><span class=\"err\">...</span>\n<span class=\"w\"> </span><span class=\"p\">}</span>\n</code></pre>\n</div>\n"}, "ums.utils.types.RiddleInformation": {"fullname": "ums.utils.types.RiddleInformation", "modulename": "ums.utils.types", "qualname": "RiddleInformation", "kind": "class", "doc": "<p>Usage docs: <a href=\"https://docs.pydantic.dev/2.9/concepts/models/\">https://docs.pydantic.dev/2.9/concepts/models/</a></p>\n\n<p>A base class for creating Pydantic models.</p>\n\n<h6 id=\"attributes\">Attributes:</h6>\n\n<ul>\n<li><strong>__class_vars__:</strong> The names of the class variables defined on the model.</li>\n<li><strong>__private_attributes__:</strong> Metadata about the private attributes of the model.</li>\n<li><strong>__signature__:</strong> The synthesized <code>__init__</code> [<code>Signature</code>][inspect.Signature] of the model.</li>\n<li><strong>__pydantic_complete__:</strong> Whether model building is completed, or if there are still undefined fields.</li>\n<li><strong>__pydantic_core_schema__:</strong> The core schema of the model.</li>\n<li><strong>__pydantic_custom_init__:</strong> Whether the model has a custom <code>__init__</code> function.</li>\n<li><strong>__pydantic_decorators__:</strong> Metadata containing the decorators defined on the model.\nThis replaces <code>Model.__validators__</code> and <code>Model.__root_validators__</code> from Pydantic V1.</li>\n<li><strong>__pydantic_generic_metadata__:</strong> Metadata for generic models; contains data used for a similar purpose to\n__args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.</li>\n<li><strong>__pydantic_parent_namespace__:</strong> Parent namespace of the model, used for automatic rebuilding of models.</li>\n<li><strong>__pydantic_post_init__:</strong> The name of the post-init method for the model, if defined.</li>\n<li><strong>__pydantic_root_model__:</strong> Whether the model is a [<code>RootModel</code>][pydantic.root_model.RootModel].</li>\n<li><strong>__pydantic_serializer__:</strong> The <code>pydantic-core</code> <code>SchemaSerializer</code> used to dump instances of the model.</li>\n<li><strong>__pydantic_validator__:</strong> The <code>pydantic-core</code> <code>SchemaValidator</code> used to validate instances of the model.</li>\n<li><strong>__pydantic_extra__:</strong> A dictionary containing extra values, if [<code>extra</code>][pydantic.config.ConfigDict.extra]\nis set to <code>'allow'</code>.</li>\n<li><strong>__pydantic_fields_set__:</strong> The names of fields explicitly set during instantiation.</li>\n<li><strong>__pydantic_private__:</strong> Values of private attributes set on the model instance.</li>\n</ul>\n", "bases": "pydantic.main.BaseModel"}, "ums.utils.types.RiddleDataType": {"fullname": "ums.utils.types.RiddleDataType", "modulename": "ums.utils.types", "qualname": "RiddleDataType", "kind": "class", "doc": "<p>Enum for the three types of data used in a riddle.</p>\n", "bases": "enum.Enum"}, "ums.utils.types.RiddleDataType.TEXT": {"fullname": "ums.utils.types.RiddleDataType.TEXT", "modulename": "ums.utils.types", "qualname": "RiddleDataType.TEXT", "kind": "variable", "doc": "<p></p>\n", "default_value": "<RiddleDataType.TEXT: 'text'>"}, "ums.utils.types.RiddleDataType.IMAGE": {"fullname": "ums.utils.types.RiddleDataType.IMAGE", "modulename": "ums.utils.types", "qualname": "RiddleDataType.IMAGE", "kind": "variable", "doc": "<p></p>\n", "default_value": "<RiddleDataType.IMAGE: 'image'>"}, "ums.utils.types.RiddleDataType.AUDIO": {"fullname": "ums.utils.types.RiddleDataType.AUDIO", "modulename": "ums.utils.types", "qualname": "RiddleDataType.AUDIO", "kind": "variable", "doc": "<p></p>\n", "default_value": "<RiddleDataType.AUDIO: 'audio'>"}, "ums.utils.types.RiddleData": {"fullname": "ums.utils.types.RiddleData", "modulename": "ums.utils.types", "qualname": "RiddleData", "kind": "class", "doc": "<p>A data item to be used to solve the riddle</p>\n", "bases": "RiddleInformation"}, "ums.utils.types.RiddleData.type": {"fullname": "ums.utils.types.RiddleData.type", "modulename": "ums.utils.types", "qualname": "RiddleData.type", "kind": "variable", "doc": "<p>The type of the data item.</p>\n", "annotation": ": ums.utils.types.RiddleDataType"}, "ums.utils.types.RiddleData.file_plain": {"fullname": "ums.utils.types.RiddleData.file_plain", "modulename": "ums.utils.types", "qualname": "RiddleData.file_plain", "kind": "variable", "doc": "<p>The plain file (as path to file system) without any processing.</p>\n\n<p>The path will be validated and must start with <code>SHARE_PATH</code> (or be relative to <code>SHARE_PATH</code>).\nThe file must exist.</p>\n", "annotation": ": Annotated[str, AfterValidator(func=<function _check_data_file at 0x101d893a0>), WrapValidator(func=<function _ignore_file_missing at 0x1020ad800>, json_schema_input_type=PydanticUndefined)]"}, "ums.utils.types.RiddleData.file_extracted": {"fullname": "ums.utils.types.RiddleData.file_extracted", "modulename": "ums.utils.types", "qualname": "RiddleData.file_extracted", "kind": "variable", "doc": "<p>The processed files (as path to file system), i.e., a schematic file containing all extracted informations.</p>\n\n<p>The path will be validated and must start with <code>SHARE_PATH</code> (or be relative to <code>SHARE_PATH</code>).\nThe file must exist.</p>\n", "annotation": ": Optional[Annotated[str, AfterValidator(func=<function _check_data_file at 0x101d893a0>), WrapValidator(func=<function _ignore_file_missing at 0x1020ad800>, json_schema_input_type=PydanticUndefined)]]"}, "ums.utils.types.RiddleData.prompt": {"fullname": "ums.utils.types.RiddleData.prompt", "modulename": "ums.utils.types", "qualname": "RiddleData.prompt", "kind": "variable", "doc": "<p>An optional prompt giving more details to the extraction agent, e.g., selecting a type of extraction/ task to do with the data.</p>\n", "annotation": ": str | ums.utils.schema.ExtractionSchema | None"}, "ums.utils.types.RiddleSolution": {"fullname": "ums.utils.types.RiddleSolution", "modulename": "ums.utils.types", "qualname": "RiddleSolution", "kind": "class", "doc": "<p>A solution of a riddle.</p>\n", "bases": "RiddleInformation"}, "ums.utils.types.RiddleSolution.solution": {"fullname": "ums.utils.types.RiddleSolution.solution", "modulename": "ums.utils.types", "qualname": "RiddleSolution.solution", "kind": "variable", "doc": "<p>The textual value of the solution.</p>\n", "annotation": ": str"}, "ums.utils.types.RiddleSolution.explanation": {"fullname": "ums.utils.types.RiddleSolution.explanation", "modulename": "ums.utils.types", "qualname": "RiddleSolution.explanation", "kind": "variable", "doc": "<p>An explanation of the solution.</p>\n", "annotation": ": str"}, "ums.utils.types.RiddleSolution.used_data": {"fullname": "ums.utils.types.RiddleSolution.used_data", "modulename": "ums.utils.types", "qualname": "RiddleSolution.used_data", "kind": "variable", "doc": "<p>The data items used to create the solution (optional).</p>\n", "annotation": ": List[ums.utils.types.RiddleData]"}, "ums.utils.types.RiddleSolution.accepted": {"fullname": "ums.utils.types.RiddleSolution.accepted", "modulename": "ums.utils.types", "qualname": "RiddleSolution.accepted", "kind": "variable", "doc": "<p>If the solution is accepted by validator/ gatekeeper.</p>\n", "annotation": ": bool"}, "ums.utils.types.RiddleSolution.review": {"fullname": "ums.utils.types.RiddleSolution.review", "modulename": "ums.utils.types", "qualname": "RiddleSolution.review", "kind": "variable", "doc": "<p>A review of the solution (if None: not tried to validate)</p>\n", "annotation": ": str | None"}, "ums.utils.types.Riddle": {"fullname": "ums.utils.types.Riddle", "modulename": "ums.utils.types", "qualname": "Riddle", "kind": "class", "doc": "<p>The riddle (the task description and possibly a solution)</p>\n", "bases": "RiddleInformation"}, "ums.utils.types.Riddle.context": {"fullname": "ums.utils.types.Riddle.context", "modulename": "ums.utils.types", "qualname": "Riddle.context", "kind": "variable", "doc": "<p>The context of the riddle (as textual string).</p>\n", "annotation": ": str"}, "ums.utils.types.Riddle.question": {"fullname": "ums.utils.types.Riddle.question", "modulename": "ums.utils.types", "qualname": "Riddle.question", "kind": "variable", "doc": "<p>The actual main question of the riddle (as textual string).</p>\n", "annotation": ": str"}, "ums.utils.types.Riddle.solutions_before": {"fullname": "ums.utils.types.Riddle.solutions_before", "modulename": "ums.utils.types", "qualname": "Riddle.solutions_before", "kind": "variable", "doc": "<p>If already tried to solve this riddle before, the (not accepted) solutions are stored here</p>\n", "annotation": ": List[ums.utils.types.RiddleSolution]"}, "ums.utils.types.RiddleSubStatus": {"fullname": "ums.utils.types.RiddleSubStatus", "modulename": "ums.utils.types", "qualname": "RiddleSubStatus", "kind": "class", "doc": "<p>The sub status for each possible step a riddle may go though.</p>\n", "bases": "RiddleInformation"}, "ums.utils.types.RiddleSubStatus.required": {"fullname": "ums.utils.types.RiddleSubStatus.required", "modulename": "ums.utils.types", "qualname": "RiddleSubStatus.required", "kind": "variable", "doc": "<p>Is this step required (i.e., requested)</p>\n", "annotation": ": bool"}, "ums.utils.types.RiddleSubStatus.finished": {"fullname": "ums.utils.types.RiddleSubStatus.finished", "modulename": "ums.utils.types", "qualname": "RiddleSubStatus.finished", "kind": "variable", "doc": "<p>Was this step already executed.</p>\n", "annotation": ": bool"}, "ums.utils.types.RiddleStatus": {"fullname": "ums.utils.types.RiddleStatus", "modulename": "ums.utils.types", "qualname": "RiddleStatus", "kind": "class", "doc": "<p>The status of a riddle, will be mostly changed by Management when the riddle is sent to different agents while solving it.</p>\n", "bases": "RiddleInformation"}, "ums.utils.types.RiddleStatus.extract": {"fullname": "ums.utils.types.RiddleStatus.extract", "modulename": "ums.utils.types", "qualname": "RiddleStatus.extract", "kind": "variable", "doc": "<p>The first extract step (image, text, audio -> more sematic data)</p>\n\n<p>The <code>RiddleData</code> items in <code>AgentMessage.data</code> shall have <code>file_extracted</code> afterwards.</p>\n", "annotation": ": ums.utils.types.RiddleSubStatus"}, "ums.utils.types.RiddleStatus.solve": {"fullname": "ums.utils.types.RiddleStatus.solve", "modulename": "ums.utils.types", "qualname": "RiddleStatus.solve", "kind": "variable", "doc": "<p>The <em>main</em> solving step.</p>\n\n<p><code>AgentMessage.solution</code> shall be an <code>RiddleSolution</code> afterwards.</p>\n", "annotation": ": ums.utils.types.RiddleSubStatus"}, "ums.utils.types.RiddleStatus.validate": {"fullname": "ums.utils.types.RiddleStatus.validate", "modulename": "ums.utils.types", "qualname": "RiddleStatus.validate", "kind": "function", "doc": "<p>The validation step, i.e., does the gatekeeper accept the solution in <code>AgentMessage.solution</code>.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">cls</span>, </span><span class=\"param\"><span class=\"n\">value</span><span class=\"p\">:</span> <span class=\"n\">Any</span></span><span class=\"return-annotation\">) -> <span class=\"n\">Self</span>:</span></span>", "funcdef": "def"}, "ums.utils.types.RiddleStatus.trial": {"fullname": "ums.utils.types.RiddleStatus.trial", "modulename": "ums.utils.types", "qualname": "RiddleStatus.trial", "kind": "variable", "doc": "<p>A counter for the number of trials.\nEach time the gatekeeper does not accept a solution of this riddle, the value is incremented.</p>\n", "annotation": ": int"}, "ums.utils.types.RiddleStatus.solved": {"fullname": "ums.utils.types.RiddleStatus.solved", "modulename": "ums.utils.types", "qualname": "RiddleStatus.solved", "kind": "variable", "doc": "<p>True, after the gatekeeper accepts the solution at <code>AgentMessage.solution</code></p>\n", "annotation": ": bool"}, "ums.utils.types.AgentMessage": {"fullname": "ums.utils.types.AgentMessage", "modulename": "ums.utils.types", "qualname": "AgentMessage", "kind": "class", "doc": "<p>The basic message, which is sent be the agent and the management.\nThe objects will be JSON en- and decoded.</p>\n", "bases": "RiddleInformation"}, "ums.utils.types.AgentMessage.id": {"fullname": "ums.utils.types.AgentMessage.id", "modulename": "ums.utils.types", "qualname": "AgentMessage.id", "kind": "variable", "doc": "<p>The riddle id, e.g., <code>ex1</code>\nThis is a unique string and identifies the riddle.</p>\n", "annotation": ": str"}, "ums.utils.types.AgentMessage.sub_ids": {"fullname": "ums.utils.types.AgentMessage.sub_ids", "modulename": "ums.utils.types", "qualname": "AgentMessage.sub_ids", "kind": "variable", "doc": "<p>There might be cases, when an agent decided to split in riddle in multiple <em>smaller</em> steps.\nEach <em>sub</em> riddle will then get its own id (i.e., <code>ex1-sub1</code>) while the sub id is added here as reference.</p>\n", "annotation": ": List[str]"}, "ums.utils.types.AgentMessage.riddle": {"fullname": "ums.utils.types.AgentMessage.riddle", "modulename": "ums.utils.types", "qualname": "AgentMessage.riddle", "kind": "variable", "doc": "<p>The riddle to solve.</p>\n", "annotation": ": ums.utils.types.Riddle"}, "ums.utils.types.AgentMessage.solution": {"fullname": "ums.utils.types.AgentMessage.solution", "modulename": "ums.utils.types", "qualname": "AgentMessage.solution", "kind": "variable", "doc": "<p>The solution of the riddle (or empty if no solution available)</p>\n", "annotation": ": ums.utils.types.RiddleSolution | None"}, "ums.utils.types.AgentMessage.data": {"fullname": "ums.utils.types.AgentMessage.data", "modulename": "ums.utils.types", "qualname": "AgentMessage.data", "kind": "variable", "doc": "<p>The data to get the solution from.</p>\n", "annotation": ": List[ums.utils.types.RiddleData]"}, "ums.utils.types.AgentMessage.status": {"fullname": "ums.utils.types.AgentMessage.status", "modulename": "ums.utils.types", "qualname": "AgentMessage.status", "kind": "variable", "doc": "<p>The status of the riddle.</p>\n", "annotation": ": ums.utils.types.RiddleStatus"}, "ums.utils.types.AgentMessage.contacts": {"fullname": "ums.utils.types.AgentMessage.contacts", "modulename": "ums.utils.types", "qualname": "AgentMessage.contacts", "kind": "variable", "doc": "<p>A counter representing the number of contacts the management had with this message.\nEach time the management processes the message, this counter is incremented by 1.\nUsing this counter the management is able to detect cycles and stop them.</p>\n", "annotation": ": int"}, "ums.utils.types.AgentResponse": {"fullname": "ums.utils.types.AgentResponse", "modulename": "ums.utils.types", "qualname": "AgentResponse", "kind": "class", "doc": "<p>Returned by the management when receiving an <code>AgentMessage</code>.</p>\n", "bases": "RiddleInformation"}, "ums.utils.types.AgentResponse.count": {"fullname": "ums.utils.types.AgentResponse.count", "modulename": "ums.utils.types", "qualname": "AgentResponse.count", "kind": "variable", "doc": "<p>The count of the message (overall numeric id).</p>\n", "annotation": ": int"}, "ums.utils.types.AgentResponse.msg": {"fullname": "ums.utils.types.AgentResponse.msg", "modulename": "ums.utils.types", "qualname": "AgentResponse.msg", "kind": "variable", "doc": "<p>An additional message.</p>\n", "annotation": ": str | None"}, "ums.utils.types.AgentResponse.error": {"fullname": "ums.utils.types.AgentResponse.error", "modulename": "ums.utils.types", "qualname": "AgentResponse.error", "kind": "variable", "doc": "<p>If an error occurred.</p>\n", "annotation": ": bool"}, "ums.utils.types.AgentResponse.error_msg": {"fullname": "ums.utils.types.AgentResponse.error_msg", "modulename": "ums.utils.types", "qualname": "AgentResponse.error_msg", "kind": "variable", "doc": "<p>Error message (if <code>error</code> )</p>\n", "annotation": ": str | None"}, "ums.utils.types.MessageDbRow": {"fullname": "ums.utils.types.MessageDbRow", "modulename": "ums.utils.types", "qualname": "MessageDbRow", "kind": "class", "doc": "<p>Object representing a database row.</p>\n", "bases": "pydantic.main.BaseModel"}, "ums.utils.types.MessageDbRow.count": {"fullname": "ums.utils.types.MessageDbRow.count", "modulename": "ums.utils.types", "qualname": "MessageDbRow.count", "kind": "variable", "doc": "<p>The count (primary key) of the item.</p>\n", "annotation": ": int"}, "ums.utils.types.MessageDbRow.sender": {"fullname": "ums.utils.types.MessageDbRow.sender", "modulename": "ums.utils.types", "qualname": "MessageDbRow.sender", "kind": "variable", "doc": "<p>The sender of the message.</p>\n", "annotation": ": str"}, "ums.utils.types.MessageDbRow.recipient": {"fullname": "ums.utils.types.MessageDbRow.recipient", "modulename": "ums.utils.types", "qualname": "MessageDbRow.recipient", "kind": "variable", "doc": "<p>The recipient of the message</p>\n", "annotation": ": str"}, "ums.utils.types.MessageDbRow.time": {"fullname": "ums.utils.types.MessageDbRow.time", "modulename": "ums.utils.types", "qualname": "MessageDbRow.time", "kind": "variable", "doc": "<p>The time (unix timestamp) the message was received/ sent.</p>\n", "annotation": ": int"}, "ums.utils.types.MessageDbRow.message": {"fullname": "ums.utils.types.MessageDbRow.message", "modulename": "ums.utils.types", "qualname": "MessageDbRow.message", "kind": "variable", "doc": "<p>The message received/ sent.</p>\n", "annotation": ": ums.utils.types.AgentMessage"}, "ums.utils.types.MessageDbRow.processed": {"fullname": "ums.utils.types.MessageDbRow.processed", "modulename": "ums.utils.types", "qualname": "MessageDbRow.processed", "kind": "variable", "doc": "<p>Did the management process the message, i.e., did the tasks necessary for this message (mostly only relevant for received messages).</p>\n", "annotation": ": bool"}, "ums.utils.types.MessageDbRow.solution": {"fullname": "ums.utils.types.MessageDbRow.solution", "modulename": "ums.utils.types", "qualname": "MessageDbRow.solution", "kind": "variable", "doc": "<p>Does this message contain a valid solution?\nTrue if contains valid solution, False if solution not valid, Null/None if not applicable</p>\n", "annotation": ": bool | None"}}, "docInfo": {"ums": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 297}, "ums.agent": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 429}, "ums.agent.agent": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.agent.AgentCapability": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 11}, "ums.agent.agent.AgentCapability.EXTRACT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.agent.AgentCapability.SOLVE": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.agent.BasicAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 15}, "ums.agent.agent.BasicAgent.agent_capability": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 23}, "ums.agent.agent.BasicAgent.before_response": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 85}, "ums.agent.agent.BasicAgent.message": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "ums.agent.agent.BasicAgent.sub_riddle": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 134, "bases": 0, "doc": 74}, "ums.agent.agent.BasicAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 57}, "ums.agent.agent.ExtractAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ums.agent.agent.ExtractAgent.agent_capability": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 23}, "ums.agent.agent.ExtractAgent.extract_type": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 10}, "ums.agent.agent.ExtractAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 24}, "ums.agent.agent.ExtractTextAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 14}, "ums.agent.agent.ExtractTextAgent.extract_type": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 10}, "ums.agent.agent.ExtractAudioAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 14}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 10}, "ums.agent.agent.ExtractImageAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 14}, "ums.agent.agent.ExtractImageAgent.extract_type": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 10}, "ums.agent.agent.SolveAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ums.agent.agent.SolveAgent.agent_capability": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 23}, "ums.agent.agent.SolveAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 16}, "ums.agent.agent.GatekeeperAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 23}, "ums.agent.agent.GatekeeperAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 26}, "ums.agent.main": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.main.WebMain": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.main.WebMain.msg_process": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.counts": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.disable_messages": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.agent_classes": {"qualname": 3, "fullname": 6, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.extract_agents": {"qualname": 3, "fullname": 6, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.solve_agents": {"qualname": 3, "fullname": 6, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"qualname": 3, "fullname": 6, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.agent.process.MessageProcessor.new_message": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 78, "bases": 0, "doc": 3}, "ums.example": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.example.example": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.example.example.MyExtractAudioAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 14}, "ums.example.example.MyExtractAudioAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 24}, "ums.example.example.MyExtractImageAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 14}, "ums.example.example.MyExtractImageAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 24}, "ums.example.example.MyExtractTextAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 14}, "ums.example.example.MyExtractTextAgent.before_response": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 85}, "ums.example.example.MyExtractTextAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 24}, "ums.example.example.MySolveAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ums.example.example.MySolveAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 16}, "ums.example.example.MyGatekeeperAgent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ums.example.example.MyGatekeeperAgent.handle": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 26}, "ums.example.example.AGENT_CLASSES": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 47, "signature": 0, "bases": 0, "doc": 3}, "ums.management": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.db": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.db.DB": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.db.DB.db": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.db.DB.db_lock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.db.DB.add_message": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 3}, "ums.management.db.DB.set_processed": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "ums.management.db.DB.set_solution": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "ums.management.db.DB.iterate": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 280, "bases": 0, "doc": 3}, "ums.management.db.DB.len": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 15}, "ums.management.db.DB.by_count": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 3}, "ums.management.interface": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.interface.Interface": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.interface.Interface.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "ums.management.interface.Interface.template": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.interface.Interface.db": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.interface.Interface.router": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.main": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.main.WebMain": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.main.WebMain.db": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.main.WebMain.msg_process": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.db": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.management_name": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.management.process.MessageProcessor.new_message": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 100, "bases": 0, "doc": 3}, "ums.utils": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.logger": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.const": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ums.utils.const.BASE_PATH": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.const.SHARE_PATH": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.const.PERSIST_PATH": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.const.PUBLIC_PATH": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.const.TEMPLATE_PATH": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.const.LOG_FILE": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 7, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.const.LOG_LEVEL": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.functions": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.functions.list_path": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "ums.utils.functions.list_shared": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 3}, "ums.utils.functions.list_shared_data": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "ums.utils.functions.list_shared_schema": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "ums.utils.request": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 218}, "ums.utils.request.RequestException": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ums.utils.request.ManagementRequest": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.request.ManagementRequest.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 39}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.request.ManagementRequest.get_message": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 27}, "ums.utils.request.ManagementRequest.list_messages": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 242, "bases": 0, "doc": 27}, "ums.utils.request.ManagementRequest.total_messages": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 185, "bases": 0, "doc": 23}, "ums.utils.request.ManagementRequest.send_message": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ums.utils.schema": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 51}, "ums.utils.schema.ExtractionSchema": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 18}, "ums.utils.types": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1031}, "ums.utils.types.RiddleInformation": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 390}, "ums.utils.types.RiddleDataType": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 14}, "ums.utils.types.RiddleDataType.TEXT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.types.RiddleDataType.IMAGE": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.types.RiddleDataType.AUDIO": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ums.utils.types.RiddleData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ums.utils.types.RiddleData.type": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ums.utils.types.RiddleData.file_plain": {"qualname": 3, "fullname": 6, "annotation": 28, "default_value": 0, "signature": 0, "bases": 0, "doc": 42}, "ums.utils.types.RiddleData.file_extracted": {"qualname": 3, "fullname": 6, "annotation": 28, "default_value": 0, "signature": 0, "bases": 0, "doc": 48}, "ums.utils.types.RiddleData.prompt": {"qualname": 2, "fullname": 5, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "ums.utils.types.RiddleSolution": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ums.utils.types.RiddleSolution.solution": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ums.utils.types.RiddleSolution.explanation": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ums.utils.types.RiddleSolution.used_data": {"qualname": 3, "fullname": 6, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ums.utils.types.RiddleSolution.accepted": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ums.utils.types.RiddleSolution.review": {"qualname": 2, "fullname": 5, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ums.utils.types.Riddle": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ums.utils.types.Riddle.context": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ums.utils.types.Riddle.question": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ums.utils.types.Riddle.solutions_before": {"qualname": 3, "fullname": 6, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "ums.utils.types.RiddleSubStatus": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 15}, "ums.utils.types.RiddleSubStatus.required": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ums.utils.types.RiddleSubStatus.finished": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ums.utils.types.RiddleStatus": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 25}, "ums.utils.types.RiddleStatus.extract": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 34}, "ums.utils.types.RiddleStatus.solve": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "ums.utils.types.RiddleStatus.validate": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 19}, "ums.utils.types.RiddleStatus.trial": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "ums.utils.types.RiddleStatus.solved": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ums.utils.types.AgentMessage": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 23}, "ums.utils.types.AgentMessage.id": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ums.utils.types.AgentMessage.sub_ids": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "ums.utils.types.AgentMessage.riddle": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ums.utils.types.AgentMessage.solution": {"qualname": 2, "fullname": 5, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ums.utils.types.AgentMessage.data": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ums.utils.types.AgentMessage.status": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ums.utils.types.AgentMessage.contacts": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 42}, "ums.utils.types.AgentResponse": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}, "ums.utils.types.AgentResponse.count": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ums.utils.types.AgentResponse.msg": {"qualname": 2, "fullname": 5, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ums.utils.types.AgentResponse.error": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ums.utils.types.AgentResponse.error_msg": {"qualname": 3, "fullname": 6, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ums.utils.types.MessageDbRow": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ums.utils.types.MessageDbRow.count": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ums.utils.types.MessageDbRow.sender": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ums.utils.types.MessageDbRow.recipient": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ums.utils.types.MessageDbRow.time": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ums.utils.types.MessageDbRow.message": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ums.utils.types.MessageDbRow.processed": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "ums.utils.types.MessageDbRow.solution": {"qualname": 2, "fullname": 5, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}}, "length": 168, "save": true}, "index": {"qualname": {"root": {"docs": {"ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}}, "df": 7}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 8}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ums.management.db.DB.add_message": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSolution.accepted": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 7, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractAgent": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}}, "df": 2}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.schema.ExtractionSchema": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleSolution.explanation": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 5, "s": {"docs": {"ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.MessageDbRow.sender": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.const.SHARE_PATH": {"tf": 1}}, "df": 1, "d": {"docs": {"ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.functions.list_shared_schema": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.functions.list_shared_schema": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.AgentMessage.status": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request.ManagementRequest.get_message": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}}, "df": 6}}}}}}}, "e": {"docs": {"ums.utils.const.BASE_PATH": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 3}}}}}, "y": {"docs": {"ums.management.db.DB.by_count": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}}, "df": 4}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.by_count": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}}, "df": 3, "s": {"docs": {"ums.agent.process.MessageProcessor.counts": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.Riddle.context": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.request.RequestException": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSubStatus.required": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.types.RiddleSolution.review": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.MessageDbRow.recipient": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}}, "df": 4}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}}, "df": 6}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 6}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.management.interface.Interface.router": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}}, "df": 8, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.process.MessageProcessor": {"tf": 1}, "ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.agent.process.MessageProcessor.counts": {"tf": 1}, "ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}, "ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}, "ums.management.process.MessageProcessor.db": {"tf": 1}, "ums.management.process.MessageProcessor.management_name": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 22}}}}}}}}}, "s": {"docs": {"ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 3}, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.types.MessageDbRow": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 8}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}}, "df": 4}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.management_name": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}}, "df": 4, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request.ManagementRequest": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}, "x": {"docs": {"ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}}, "df": 2}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyGatekeeperAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}}, "df": 9}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}}, "df": 5}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.interface.Interface.template": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}}, "df": 2}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleDataType.TEXT": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.RiddleStatus.trial": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.MessageDbRow.time": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.main.WebMain": {"tf": 1}, "ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.management.main.WebMain": {"tf": 1}, "ums.management.main.WebMain.db": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}}, "df": 5}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.management.db.DB.set_processed": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ums.utils.const.BASE_PATH": {"tf": 1}, "ums.utils.const.SHARE_PATH": {"tf": 1}, "ums.utils.const.PERSIST_PATH": {"tf": 1}, "ums.utils.const.PUBLIC_PATH": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.const.PERSIST_PATH": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.const.PUBLIC_PATH": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.interface.Interface": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.interface.Interface.template": {"tf": 1}, "ums.management.interface.Interface.db": {"tf": 1}, "ums.management.interface.Interface.router": {"tf": 1}}, "df": 5}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"ums.utils.types.AgentMessage.id": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSolution.used_data": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}, "ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.functions.list_shared_schema": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ums.management.db.DB.db_lock": {"tf": 1}}, "df": 1}}, "g": {"docs": {"ums.utils.const.LOG_FILE": {"tf": 1}, "ums.utils.const.LOG_LEVEL": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.logger": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ums.management.db.DB.len": {"tf": 1}}, "df": 1}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.const.LOG_LEVEL": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {"ums.management.db.DB": {"tf": 1}, "ums.management.db.DB.db": {"tf": 1.4142135623730951}, "ums.management.db.DB.db_lock": {"tf": 1.4142135623730951}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.len": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.management.interface.Interface.db": {"tf": 1}, "ums.management.main.WebMain.db": {"tf": 1}, "ums.management.process.MessageProcessor.db": {"tf": 1}}, "df": 12}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.process.MessageProcessor.management_name": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.const.LOG_FILE": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 3}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSubStatus.finished": {"tf": 1}}, "df": 1}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.Riddle.question": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 1}}}}}}}}}}, "fullname": {"root": {"docs": {"ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 4, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1}, "ums.agent.agent": {"tf": 1}, "ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}, "ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.agent.main": {"tf": 1}, "ums.agent.main.WebMain": {"tf": 1}, "ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.agent.process": {"tf": 1}, "ums.agent.process.MessageProcessor": {"tf": 1}, "ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.agent.process.MessageProcessor.counts": {"tf": 1}, "ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}, "ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.example": {"tf": 1}, "ums.example.example": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 1}, "ums.management": {"tf": 1}, "ums.management.db": {"tf": 1}, "ums.management.db.DB": {"tf": 1}, "ums.management.db.DB.db": {"tf": 1}, "ums.management.db.DB.db_lock": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.len": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.management.interface": {"tf": 1}, "ums.management.interface.Interface": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.interface.Interface.template": {"tf": 1}, "ums.management.interface.Interface.db": {"tf": 1}, "ums.management.interface.Interface.router": {"tf": 1}, "ums.management.main": {"tf": 1}, "ums.management.main.WebMain": {"tf": 1}, "ums.management.main.WebMain.db": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}, "ums.management.process": {"tf": 1}, "ums.management.process.MessageProcessor": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}, "ums.management.process.MessageProcessor.db": {"tf": 1}, "ums.management.process.MessageProcessor.management_name": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils": {"tf": 1}, "ums.utils.logger": {"tf": 1}, "ums.utils.const": {"tf": 1}, "ums.utils.const.BASE_PATH": {"tf": 1}, "ums.utils.const.SHARE_PATH": {"tf": 1}, "ums.utils.const.PERSIST_PATH": {"tf": 1}, "ums.utils.const.PUBLIC_PATH": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}, "ums.utils.const.LOG_FILE": {"tf": 1}, "ums.utils.const.LOG_LEVEL": {"tf": 1}, "ums.utils.functions": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}, "ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.functions.list_shared_schema": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.request.RequestException": {"tf": 1}, "ums.utils.request.ManagementRequest": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 168}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils": {"tf": 1}, "ums.utils.logger": {"tf": 1}, "ums.utils.const": {"tf": 1}, "ums.utils.const.BASE_PATH": {"tf": 1}, "ums.utils.const.SHARE_PATH": {"tf": 1}, "ums.utils.const.PERSIST_PATH": {"tf": 1}, "ums.utils.const.PUBLIC_PATH": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}, "ums.utils.const.LOG_FILE": {"tf": 1}, "ums.utils.const.LOG_LEVEL": {"tf": 1}, "ums.utils.functions": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}, "ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.functions.list_shared_schema": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.request.RequestException": {"tf": 1}, "ums.utils.request.ManagementRequest": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 77}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSolution.used_data": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.message": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractTextAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractImageAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1.7320508075688772}, "ums.agent.agent.SolveAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1.7320508075688772}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.main": {"tf": 1}, "ums.agent.main.WebMain": {"tf": 1}, "ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.agent.process": {"tf": 1}, "ums.agent.process.MessageProcessor": {"tf": 1}, "ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.agent.process.MessageProcessor.counts": {"tf": 1}, "ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}, "ums.agent.process.MessageProcessor.agent_classes": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 44, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}}, "df": 7}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 8}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ums.management.db.DB.add_message": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSolution.accepted": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 7, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractAgent": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}}, "df": 2}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.schema.ExtractionSchema": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.example": {"tf": 1}, "ums.example.example": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyGatekeeperAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.AGENT_CLASSES": {"tf": 1.4142135623730951}}, "df": 14}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleSolution.explanation": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 5, "s": {"docs": {"ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.MessageDbRow.sender": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.const.SHARE_PATH": {"tf": 1}}, "df": 1, "d": {"docs": {"ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.functions.list_shared_schema": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.functions.list_shared_schema": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.AgentMessage.status": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request.ManagementRequest.get_message": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}}, "df": 6}}}}}}}, "e": {"docs": {"ums.utils.const.BASE_PATH": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 3}}}}}, "y": {"docs": {"ums.management.db.DB.by_count": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}}, "df": 4}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.by_count": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}}, "df": 3, "s": {"docs": {"ums.agent.process.MessageProcessor.counts": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.Riddle.context": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.const": {"tf": 1}, "ums.utils.const.BASE_PATH": {"tf": 1}, "ums.utils.const.SHARE_PATH": {"tf": 1}, "ums.utils.const.PERSIST_PATH": {"tf": 1}, "ums.utils.const.PUBLIC_PATH": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}, "ums.utils.const.LOG_FILE": {"tf": 1}, "ums.utils.const.LOG_LEVEL": {"tf": 1}}, "df": 8}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request": {"tf": 1}, "ums.utils.request.RequestException": {"tf": 1}, "ums.utils.request.ManagementRequest": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.request.RequestException": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSubStatus.required": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.types.RiddleSolution.review": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.MessageDbRow.recipient": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}}, "df": 4}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}}, "df": 6}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 6}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.management.interface.Interface.router": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}}, "df": 8, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.process.MessageProcessor": {"tf": 1}, "ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.agent.process.MessageProcessor.counts": {"tf": 1}, "ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}, "ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}, "ums.management.process.MessageProcessor.db": {"tf": 1}, "ums.management.process.MessageProcessor.management_name": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 22}}}}}}}}}, "s": {"docs": {"ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 3}, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.types.MessageDbRow": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 8}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.main": {"tf": 1}, "ums.agent.main.WebMain": {"tf": 1}, "ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.management.main": {"tf": 1}, "ums.management.main.WebMain": {"tf": 1}, "ums.management.main.WebMain.db": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}}, "df": 7}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management": {"tf": 1}, "ums.management.db": {"tf": 1}, "ums.management.db.DB": {"tf": 1}, "ums.management.db.DB.db": {"tf": 1}, "ums.management.db.DB.db_lock": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.len": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.management.interface": {"tf": 1}, "ums.management.interface.Interface": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.interface.Interface.template": {"tf": 1}, "ums.management.interface.Interface.db": {"tf": 1}, "ums.management.interface.Interface.router": {"tf": 1}, "ums.management.main": {"tf": 1}, "ums.management.main.WebMain": {"tf": 1}, "ums.management.main.WebMain.db": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}, "ums.management.process": {"tf": 1}, "ums.management.process.MessageProcessor": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}, "ums.management.process.MessageProcessor.db": {"tf": 1}, "ums.management.process.MessageProcessor.management_name": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}}, "df": 35, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request.ManagementRequest": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}, "x": {"docs": {"ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}}, "df": 4}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyGatekeeperAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}}, "df": 9}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}}, "df": 5, "s": {"docs": {"ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 51}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.interface.Interface.template": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}}, "df": 2}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleDataType.TEXT": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.RiddleStatus.trial": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.MessageDbRow.time": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.main.WebMain": {"tf": 1}, "ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.management.main.WebMain": {"tf": 1}, "ums.management.main.WebMain.db": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}}, "df": 5}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.main.WebMain.msg_process": {"tf": 1}, "ums.agent.process": {"tf": 1}, "ums.agent.process.MessageProcessor": {"tf": 1}, "ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.agent.process.MessageProcessor.counts": {"tf": 1}, "ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}, "ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.main.WebMain.msg_process": {"tf": 1}, "ums.management.process": {"tf": 1}, "ums.management.process.MessageProcessor": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1}, "ums.management.process.MessageProcessor.db": {"tf": 1}, "ums.management.process.MessageProcessor.management_name": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 26, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.management.db.DB.set_processed": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ums.utils.const.BASE_PATH": {"tf": 1}, "ums.utils.const.SHARE_PATH": {"tf": 1}, "ums.utils.const.PERSIST_PATH": {"tf": 1}, "ums.utils.const.PUBLIC_PATH": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.const.PERSIST_PATH": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.const.PUBLIC_PATH": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.interface": {"tf": 1}, "ums.management.interface.Interface": {"tf": 1.4142135623730951}, "ums.management.interface.Interface.__init__": {"tf": 1.4142135623730951}, "ums.management.interface.Interface.template": {"tf": 1.4142135623730951}, "ums.management.interface.Interface.db": {"tf": 1.4142135623730951}, "ums.management.interface.Interface.router": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"ums.utils.types.AgentMessage.id": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}, "ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.functions.list_shared_schema": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ums.management.db.DB.db_lock": {"tf": 1}}, "df": 1}}, "g": {"docs": {"ums.utils.const.LOG_FILE": {"tf": 1}, "ums.utils.const.LOG_LEVEL": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.logger": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ums.management.db.DB.len": {"tf": 1}}, "df": 1}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.const.LOG_LEVEL": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.process.MessageProcessor.disable_messages": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {"ums.management.db": {"tf": 1}, "ums.management.db.DB": {"tf": 1.4142135623730951}, "ums.management.db.DB.db": {"tf": 1.7320508075688772}, "ums.management.db.DB.db_lock": {"tf": 1.7320508075688772}, "ums.management.db.DB.add_message": {"tf": 1.4142135623730951}, "ums.management.db.DB.set_processed": {"tf": 1.4142135623730951}, "ums.management.db.DB.set_solution": {"tf": 1.4142135623730951}, "ums.management.db.DB.iterate": {"tf": 1.4142135623730951}, "ums.management.db.DB.len": {"tf": 1.4142135623730951}, "ums.management.db.DB.by_count": {"tf": 1.4142135623730951}, "ums.management.interface.Interface.db": {"tf": 1}, "ums.management.main.WebMain.db": {"tf": 1}, "ums.management.process.MessageProcessor.db": {"tf": 1}}, "df": 13}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.process.MessageProcessor.management_name": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.const.LOG_FILE": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 3}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSubStatus.finished": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.functions": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}, "ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.functions.list_shared_data": {"tf": 1}, "ums.utils.functions.list_shared_schema": {"tf": 1}}, "df": 5}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.Riddle.question": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 1}}}}}}}}}}, "annotation": {"root": {"0": {"docs": {}, "df": 0, "x": {"1": {"0": {"1": {"docs": {}, "df": 0, "d": {"8": {"9": {"3": {"docs": {}, "df": 0, "a": {"0": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "2": {"0": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"8": {"0": {"0": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {"ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.prompt": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1.4142135623730951}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1.4142135623730951}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1.4142135623730951}}, "df": 40, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}}, "df": 7}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 2}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.agent_classes": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1.4142135623730951}}, "df": 4, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.MessageDbRow.message": {"tf": 1}}, "df": 1}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "t": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 2}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.agent_classes": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 7}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.extract_agents": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.solve_agents": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}}, "df": 11}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 2}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}}, "df": 8}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}}, "df": 11}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2, "s": {"docs": {"ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}}, "df": 10}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentMessage.riddle": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleData.type": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.AgentMessage.status": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}, "t": {"docs": {"ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}}, "df": 5}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 6}}}}}}, "default_value": {"root": {"0": {"docs": {"ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1.4142135623730951}}, "df": 3}, "1": {"0": {"0": {"docs": {"ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0, ":": {"8": {"0": {"docs": {"ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "2": {"0": {"docs": {"ums.utils.const.LOG_LEVEL": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"docs": {"ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1}}, "df": 1}, "docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1.4142135623730951}, "ums.example.example.AGENT_CLASSES": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1.4142135623730951}, "ums.utils.logger": {"tf": 1.4142135623730951}, "ums.utils.const.BASE_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.SHARE_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.PERSIST_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.PUBLIC_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.LOG_FILE": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1.4142135623730951}}, "df": 21, "l": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 2.23606797749979}, "ums.utils.logger": {"tf": 1}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}}, "df": 8}, "o": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.const.LOG_FILE": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.logger": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}}, "df": 3}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.logger": {"tf": 1}, "ums.utils.const.BASE_PATH": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.const.SHARE_PATH": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.const.PERSIST_PATH": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.const.LOG_FILE": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.const.PUBLIC_PATH": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.const.TEMPLATE_PATH": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ums.utils.types.RiddleDataType.AUDIO": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 3.1622776601683795}}, "df": 2, ":": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "x": {"2": {"7": {"docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1.4142135623730951}, "ums.example.example.AGENT_CLASSES": {"tf": 3.1622776601683795}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1.4142135623730951}, "ums.utils.const.BASE_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.SHARE_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.PERSIST_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.PUBLIC_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1.4142135623730951}, "ums.utils.const.LOG_FILE": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1.4142135623730951}}, "df": 20}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "g": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 2.23606797749979}, "ums.utils.logger": {"tf": 1}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}}, "df": 8}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.AgentCapability.SOLVE": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"1": {"2": {"7": {"docs": {"ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}, "ums.example.example.AGENT_CLASSES": {"tf": 2.23606797749979}, "ums.utils.logger": {"tf": 1}, "ums.utils.const.BASE_PATH": {"tf": 1}, "ums.utils.const.SHARE_PATH": {"tf": 1}, "ums.utils.const.PERSIST_PATH": {"tf": 1}, "ums.utils.const.PUBLIC_PATH": {"tf": 1}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1}, "ums.utils.const.LOG_FILE": {"tf": 1}}, "df": 9}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.example.example.AGENT_CLASSES": {"tf": 2.23606797749979}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 1}}}}}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.AGENT_CLASSES": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.logger": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleDataType.TEXT": {"tf": 1}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleDataType.TEXT": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleDataType.IMAGE": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "signature": {"root": {"0": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 2}, "1": {"0": {"docs": {"ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"0": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 4.58257569495584}, "ums.agent.agent.BasicAgent.before_response": {"tf": 7.0710678118654755}, "ums.agent.agent.BasicAgent.message": {"tf": 4.898979485566356}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 10.535653752852738}, "ums.agent.agent.BasicAgent.handle": {"tf": 6.928203230275509}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 4.58257569495584}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 4.58257569495584}, "ums.agent.agent.ExtractAgent.handle": {"tf": 6.6332495807108}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 4.58257569495584}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 4.58257569495584}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 4.58257569495584}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 4.58257569495584}, "ums.agent.agent.SolveAgent.handle": {"tf": 8.18535277187245}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 4.58257569495584}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 8.18535277187245}, "ums.agent.process.MessageProcessor.__init__": {"tf": 4.242640687119285}, "ums.agent.process.MessageProcessor.new_message": {"tf": 7.937253933193772}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 6.6332495807108}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 6.6332495807108}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 7.0710678118654755}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 6.6332495807108}, "ums.example.example.MySolveAgent.handle": {"tf": 8.18535277187245}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 8.18535277187245}, "ums.management.db.DB.add_message": {"tf": 8.18535277187245}, "ums.management.db.DB.set_processed": {"tf": 5.830951894845301}, "ums.management.db.DB.set_solution": {"tf": 5.291502622129181}, "ums.management.db.DB.iterate": {"tf": 15.198684153570664}, "ums.management.db.DB.len": {"tf": 4.242640687119285}, "ums.management.db.DB.by_count": {"tf": 6.082762530298219}, "ums.management.interface.Interface.__init__": {"tf": 6.48074069840786}, "ums.management.process.MessageProcessor.__init__": {"tf": 4.898979485566356}, "ums.management.process.MessageProcessor.new_message": {"tf": 9}, "ums.utils.functions.list_path": {"tf": 4.58257569495584}, "ums.utils.functions.list_shared": {"tf": 6.164414002968976}, "ums.utils.functions.list_shared_data": {"tf": 2.6457513110645907}, "ums.utils.functions.list_shared_schema": {"tf": 2.6457513110645907}, "ums.utils.request.ManagementRequest.__init__": {"tf": 4.242640687119285}, "ums.utils.request.ManagementRequest.get_message": {"tf": 5.656854249492381}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 14.142135623730951}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 12.36931687685298}, "ums.utils.request.ManagementRequest.send_message": {"tf": 6.782329983125268}, "ums.utils.types.RiddleStatus.validate": {"tf": 4.47213595499958}}, "df": 42, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 2}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1.7320508075688772}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1.7320508075688772}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1.7320508075688772}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}}, "df": 31}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 2}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1.7320508075688772}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1.7320508075688772}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1.7320508075688772}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}}, "df": 25}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1.4142135623730951}}, "df": 4, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}}, "df": 4}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 8}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.len": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 26}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 5}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.interface.Interface.__init__": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {"ums.management.db.DB.add_message": {"tf": 1.4142135623730951}, "ums.management.db.DB.iterate": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.utils.functions.list_path": {"tf": 1.4142135623730951}, "ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1.7320508075688772}}, "df": 7}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 6}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1.4142135623730951}}, "df": 5, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}}, "df": 4}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 2}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1.7320508075688772}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1.7320508075688772}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1.7320508075688772}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}}, "df": 25}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.db.DB.set_processed": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.db.DB.iterate": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1.4142135623730951}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.interface.Interface.__init__": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.management.interface.Interface.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 2.23606797749979}, "ums.management.db.DB.len": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 2}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1.7320508075688772}}, "df": 9}}, "d": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.functions.list_shared": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.set_solution": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 3.7416573867739413}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 3.7416573867739413}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 3.7416573867739413}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.set_processed": {"tf": 1.4142135623730951}, "ums.management.db.DB.set_solution": {"tf": 1.4142135623730951}, "ums.management.db.DB.iterate": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1.4142135623730951}}, "df": 11}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}, "ums.management.process.MessageProcessor.new_message": {"tf": 1.4142135623730951}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.process.MessageProcessor.__init__": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {"ums.management.interface.Interface.__init__": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.__init__": {"tf": 1.7320508075688772}}, "df": 2}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.functions.list_path": {"tf": 1}, "ums.utils.functions.list_shared": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 4}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {"ums.utils.functions.list_shared": {"tf": 1.4142135623730951}}, "df": 1}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.functions.list_shared": {"tf": 1}}, "df": 1}}}}, "z": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 4, "s": {"docs": {"ums.agent.process.MessageProcessor.__init__": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}, "ums.management.db.DB.by_count": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 4}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.interface.Interface.__init__": {"tf": 1}, "ums.management.process.MessageProcessor.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.process.MessageProcessor.__init__": {"tf": 1}, "ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ums.agent.process.MessageProcessor.new_message": {"tf": 1}, "ums.management.process.MessageProcessor.new_message": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.functions.list_shared": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.functions.list_shared": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.management.db.DB.add_message": {"tf": 1}, "ums.management.db.DB.set_processed": {"tf": 1}, "ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 5}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ums.utils.functions.list_path": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.management.db.DB.iterate": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {"ums.utils.functions.list_shared": {"tf": 1.4142135623730951}}, "df": 1}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ums.management.db.DB.len": {"tf": 1}}, "df": 1}}}}}}, "j": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "a": {"2": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.management.interface.Interface.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "docs": {}, "df": 0}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 1}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ums.agent.agent.AgentCapability": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType": {"tf": 1.4142135623730951}}, "df": 2}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractAudioAgent": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractImageAgent": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractTextAgent": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.request.RequestException": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1.4142135623730951}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyExtractAudioAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyGatekeeperAgent": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractAgent": {"tf": 1}, "ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.request.RequestException": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1}}, "df": 5}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MySolveAgent": {"tf": 1}}, "df": 1}}}}}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.example.example.MyGatekeeperAgent": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}}, "df": 3}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"2": {"docs": {"ums.utils.request": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 2}, "2": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}, "3": {"1": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}, "9": {"docs": {"ums.utils.request": {"tf": 2.8284271247461903}, "ums.utils.types": {"tf": 2}}, "df": 2}, "docs": {}, "df": 0}, "6": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"2": {"5": {"5": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}, "6": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "docs": {"ums": {"tf": 10.198039027185569}, "ums.agent": {"tf": 9.9498743710662}, "ums.agent.agent": {"tf": 1.7320508075688772}, "ums.agent.agent.AgentCapability": {"tf": 1.7320508075688772}, "ums.agent.agent.AgentCapability.EXTRACT": {"tf": 1.7320508075688772}, "ums.agent.agent.AgentCapability.SOLVE": {"tf": 1.7320508075688772}, "ums.agent.agent.AgentCapability.GATEKEEPER": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent.before_response": {"tf": 3.872983346207417}, "ums.agent.agent.BasicAgent.message": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 4.123105625617661}, "ums.agent.agent.BasicAgent.handle": {"tf": 4}, "ums.agent.agent.ExtractAgent": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 2.23606797749979}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractAgent.handle": {"tf": 3}, "ums.agent.agent.ExtractTextAgent": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractImageAgent": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1.7320508075688772}, "ums.agent.agent.SolveAgent": {"tf": 1.7320508075688772}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 2.23606797749979}, "ums.agent.agent.SolveAgent.handle": {"tf": 2.6457513110645907}, "ums.agent.agent.GatekeeperAgent": {"tf": 1.7320508075688772}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 2.23606797749979}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 3.3166247903554}, "ums.agent.main": {"tf": 1.7320508075688772}, "ums.agent.main.WebMain": {"tf": 1.7320508075688772}, "ums.agent.main.WebMain.msg_process": {"tf": 1.7320508075688772}, "ums.agent.process": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.__init__": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.AGENTS_LIST": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.counts": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.disable_messages": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.agent_classes": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.extract_agents": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.solve_agents": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.gatekeeper_agents": {"tf": 1.7320508075688772}, "ums.agent.process.MessageProcessor.new_message": {"tf": 1.7320508075688772}, "ums.example": {"tf": 1.7320508075688772}, "ums.example.example": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractAudioAgent": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 3}, "ums.example.example.MyExtractImageAgent": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 3}, "ums.example.example.MyExtractTextAgent": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 3.872983346207417}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 3}, "ums.example.example.MySolveAgent": {"tf": 1.7320508075688772}, "ums.example.example.MySolveAgent.handle": {"tf": 2.6457513110645907}, "ums.example.example.MyGatekeeperAgent": {"tf": 1.7320508075688772}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 3.3166247903554}, "ums.example.example.AGENT_CLASSES": {"tf": 1.7320508075688772}, "ums.management": {"tf": 1.7320508075688772}, "ums.management.db": {"tf": 1.7320508075688772}, "ums.management.db.DB": {"tf": 1.7320508075688772}, "ums.management.db.DB.db": {"tf": 1.7320508075688772}, "ums.management.db.DB.db_lock": {"tf": 1.7320508075688772}, "ums.management.db.DB.add_message": {"tf": 1.7320508075688772}, "ums.management.db.DB.set_processed": {"tf": 1.7320508075688772}, "ums.management.db.DB.set_solution": {"tf": 1.7320508075688772}, "ums.management.db.DB.iterate": {"tf": 1.7320508075688772}, "ums.management.db.DB.len": {"tf": 2.6457513110645907}, "ums.management.db.DB.by_count": {"tf": 1.7320508075688772}, "ums.management.interface": {"tf": 1.7320508075688772}, "ums.management.interface.Interface": {"tf": 1.7320508075688772}, "ums.management.interface.Interface.__init__": {"tf": 1.7320508075688772}, "ums.management.interface.Interface.template": {"tf": 1.7320508075688772}, "ums.management.interface.Interface.db": {"tf": 1.7320508075688772}, "ums.management.interface.Interface.router": {"tf": 1.7320508075688772}, "ums.management.main": {"tf": 1.7320508075688772}, "ums.management.main.WebMain": {"tf": 1.7320508075688772}, "ums.management.main.WebMain.db": {"tf": 1.7320508075688772}, "ums.management.main.WebMain.msg_process": {"tf": 1.7320508075688772}, "ums.management.process": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.__init__": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.SOLUTION_MAX_TRIALS": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.MESSAGE_MAX_CONTACTS": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.MANAGEMENT_URL": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.AGENTS_PROCESS": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.AGENTS_SOLVE": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.AGENTS_GATEKEEPER": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.db": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.management_name": {"tf": 1.7320508075688772}, "ums.management.process.MessageProcessor.new_message": {"tf": 1.7320508075688772}, "ums.utils": {"tf": 1.7320508075688772}, "ums.utils.logger": {"tf": 1.7320508075688772}, "ums.utils.const": {"tf": 1.7320508075688772}, "ums.utils.const.BASE_PATH": {"tf": 1.7320508075688772}, "ums.utils.const.SHARE_PATH": {"tf": 1.7320508075688772}, "ums.utils.const.PERSIST_PATH": {"tf": 1.7320508075688772}, "ums.utils.const.PUBLIC_PATH": {"tf": 1.7320508075688772}, "ums.utils.const.TEMPLATE_PATH": {"tf": 1.7320508075688772}, "ums.utils.const.LOG_FILE": {"tf": 1.7320508075688772}, "ums.utils.const.LOG_LEVEL": {"tf": 1.7320508075688772}, "ums.utils.functions": {"tf": 1.7320508075688772}, "ums.utils.functions.list_path": {"tf": 1.7320508075688772}, "ums.utils.functions.list_shared": {"tf": 1.7320508075688772}, "ums.utils.functions.list_shared_data": {"tf": 1.7320508075688772}, "ums.utils.functions.list_shared_schema": {"tf": 1.7320508075688772}, "ums.utils.request": {"tf": 11.045361017187261}, "ums.utils.request.RequestException": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.__init__": {"tf": 2.23606797749979}, "ums.utils.request.ManagementRequest.MANAGEMENT_URL": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.get_message": {"tf": 3.1622776601683795}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 2.8284271247461903}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 2.8284271247461903}, "ums.utils.request.ManagementRequest.send_message": {"tf": 2.23606797749979}, "ums.utils.schema": {"tf": 2.6457513110645907}, "ums.utils.schema.ExtractionSchema": {"tf": 1.7320508075688772}, "ums.utils.types": {"tf": 27.94637722496424}, "ums.utils.types.RiddleInformation": {"tf": 12.409673645990857}, "ums.utils.types.RiddleDataType": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleDataType.TEXT": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleDataType.IMAGE": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleDataType.AUDIO": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleData": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.type": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleData.file_plain": {"tf": 3.1622776601683795}, "ums.utils.types.RiddleData.file_extracted": {"tf": 3.1622776601683795}, "ums.utils.types.RiddleData.prompt": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.solution": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.review": {"tf": 1.7320508075688772}, "ums.utils.types.Riddle": {"tf": 1.7320508075688772}, "ums.utils.types.Riddle.context": {"tf": 1.7320508075688772}, "ums.utils.types.Riddle.question": {"tf": 1.7320508075688772}, "ums.utils.types.Riddle.solutions_before": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSubStatus": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleStatus": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleStatus.extract": {"tf": 3.605551275463989}, "ums.utils.types.RiddleStatus.solve": {"tf": 3.4641016151377544}, "ums.utils.types.RiddleStatus.validate": {"tf": 2.23606797749979}, "ums.utils.types.RiddleStatus.trial": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleStatus.solved": {"tf": 2}, "ums.utils.types.AgentMessage": {"tf": 1.7320508075688772}, "ums.utils.types.AgentMessage.id": {"tf": 2.23606797749979}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 3}, "ums.utils.types.AgentMessage.riddle": {"tf": 1.7320508075688772}, "ums.utils.types.AgentMessage.solution": {"tf": 1.7320508075688772}, "ums.utils.types.AgentMessage.data": {"tf": 1.7320508075688772}, "ums.utils.types.AgentMessage.status": {"tf": 1.7320508075688772}, "ums.utils.types.AgentMessage.contacts": {"tf": 1.7320508075688772}, "ums.utils.types.AgentResponse": {"tf": 2.23606797749979}, "ums.utils.types.AgentResponse.count": {"tf": 1.7320508075688772}, "ums.utils.types.AgentResponse.msg": {"tf": 1.7320508075688772}, "ums.utils.types.AgentResponse.error": {"tf": 1.7320508075688772}, "ums.utils.types.AgentResponse.error_msg": {"tf": 2.23606797749979}, "ums.utils.types.MessageDbRow": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.count": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.sender": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.time": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.message": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.processed": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.solution": {"tf": 1.4142135623730951}}, "df": 168, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 4.58257569495584}, "ums.agent": {"tf": 5.385164807134504}, "ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 2.6457513110645907}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 2}, "ums.agent.agent.BasicAgent.handle": {"tf": 2.23606797749979}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 2.6457513110645907}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.utils.const": {"tf": 1}, "ums.utils.request": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.7320508075688772}, "ums.utils.schema": {"tf": 2.449489742783178}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 3.1622776601683795}, "ums.utils.types.RiddleInformation": {"tf": 4.795831523312719}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_plain": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleData.prompt": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSolution.solution": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1.4142135623730951}, "ums.utils.types.Riddle.context": {"tf": 1.4142135623730951}, "ums.utils.types.Riddle.question": {"tf": 1.4142135623730951}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.extract": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleStatus.trial": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleStatus.solved": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage": {"tf": 2}, "ums.utils.types.AgentMessage.id": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.data": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.status": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.contacts": {"tf": 2.23606797749979}, "ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.count": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.sender": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.time": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1.7320508075688772}}, "df": 73, "n": {"docs": {"ums.agent": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}, "m": {"docs": {"ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.4142135623730951}, "ums.utils.const": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 28}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.AgentCapability": {"tf": 1}, "ums.utils.types.RiddleDataType": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ums.utils.types.RiddleSubStatus": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 4, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {"ums": {"tf": 1.7320508075688772}, "ums.agent": {"tf": 2.6457513110645907}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.7320508075688772}, "ums.utils.request": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 2}, "ums.utils.types.RiddleData": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.prompt": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 21, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ums.agent": {"tf": 2.8284271247461903}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}}, "df": 4, "s": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 7}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.request.ManagementRequest.get_message": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 2}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 4, "s": {"docs": {"ums": {"tf": 2}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.schema": {"tf": 1.4142135623730951}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.utils.types.RiddleStatus.trial": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ums.utils.types.MessageDbRow.time": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ums": {"tf": 2}, "ums.utils.types.RiddleData.file_plain": {"tf": 2}, "ums.utils.types.RiddleData.file_extracted": {"tf": 2}}, "df": 3}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ums": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ums": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}}, "df": 3}, "e": {"docs": {"ums.management.db.DB.len": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}}, "df": 6}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "y": {"docs": {"ums.agent": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent": {"tf": 2}, "ums.utils.request": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 4.47213595499958}}, "df": 4}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 1}, "s": {"docs": {"ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 2}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.MessageDbRow.count": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 3.3166247903554}, "ums.agent": {"tf": 2.449489742783178}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.request": {"tf": 1.4142135623730951}, "ums.utils.types": {"tf": 1}}, "df": 5, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ums": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ums": {"tf": 1.7320508075688772}, "ums.agent": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.schema": {"tf": 1.4142135623730951}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleInformation": {"tf": 2}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}}, "df": 10}, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 8}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 2.449489742783178}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentMessage.id": {"tf": 1}}, "df": 1}}}, "x": {"docs": {"ums.utils.types.MessageDbRow.time": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 2, "s": {"docs": {"ums": {"tf": 2.23606797749979}, "ums.agent": {"tf": 1}, "ums.utils.const": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent": {"tf": 2.6457513110645907}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.const": {"tf": 1}}, "df": 1}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.Riddle.context": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.const": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent": {"tf": 1.4142135623730951}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 2.449489742783178}, "ums.utils.request": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1, "d": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request": {"tf": 2}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 2}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}}, "df": 16, "d": {"docs": {"ums": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 3, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 2.8284271247461903}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ums": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}}, "df": 1, "d": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}}}, "n": {"docs": {"ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 10}, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}}, "df": 5}}}, "y": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}}, "df": 4}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.4142135623730951}}, "df": 6}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "v": {"docs": {"ums.utils.types": {"tf": 1}}, "df": 1}, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 3}, "ums.agent.agent.BasicAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.agent.agent.SolveAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleInformation": {"tf": 2.23606797749979}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 35, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 2.23606797749979}, "ums.agent": {"tf": 4.898979485566356}, "ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.BasicAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyGatekeeperAgent": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 29, "e": {"docs": {}, "df": 0, "n": {"docs": {"ums": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "v": {"docs": {"ums.utils.types": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"ums": {"tf": 2}, "ums.agent": {"tf": 2.23606797749979}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}}, "df": 5}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}}, "df": 7}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.ExtractAgent": {"tf": 1}, "ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}}, "df": 17, "d": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1.4142135623730951}, "ums.utils.request": {"tf": 1.4142135623730951}, "ums.utils.request.RequestException": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.schema": {"tf": 1.4142135623730951}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 26}, "y": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 2}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 7}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 2.449489742783178}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 4}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 2}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 8}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 5}}, "s": {"docs": {"ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}}, "df": 2}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 2}}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.AgentResponse.msg": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 6, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ums": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {"ums": {"tf": 2.23606797749979}, "ums.agent": {"tf": 2.6457513110645907}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1.4142135623730951}}, "df": 14, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}}, "df": 2, "s": {"docs": {"ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 2.23606797749979}}, "df": 1}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 2}}}}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ums.agent": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent.before_response": {"tf": 2}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 2}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1.4142135623730951}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1.4142135623730951}}, "df": 18}, "d": {"docs": {"ums.utils.request": {"tf": 1.4142135623730951}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1.4142135623730951}, "ums.utils.types.AgentResponse.count": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.AgentMessage.id": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"ums.utils.types": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "m": {"docs": {"ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}}, "df": 7, "s": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ums.management.db.DB.len": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}, "f": {"docs": {"ums.agent": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.4142135623730951}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1.7320508075688772}}, "df": 13}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ums": {"tf": 2.449489742783178}, "ums.agent": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1.4142135623730951}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.management.db.DB.len": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleInformation": {"tf": 3.3166247903554}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.MessageDbRow.count": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}}, "df": 36}, "n": {"docs": {"ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.utils.request.RequestException": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 7, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 2}}, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 3}}, "r": {"docs": {"ums": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.AgentResponse.count": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}}, "df": 2, "s": {"docs": {"ums.utils.types.AgentMessage": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.AgentResponse.error": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"ums.agent": {"tf": 1.7320508075688772}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 3, "d": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1}, "ums.utils.const": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"ums": {"tf": 1.4142135623730951}}, "df": 1}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.management.db.DB.len": {"tf": 1}, "ums.utils.const": {"tf": 1}, "ums.utils.request": {"tf": 1}}, "df": 6}, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}}, "df": 7}, "d": {"docs": {"ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.7320508075688772}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 3}}}, "s": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.request": {"tf": 1.7320508075688772}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 2}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.utils.request": {"tf": 1}}, "df": 4}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.request.RequestException": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1, "d": {"docs": {"ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.4142135623730951}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 6, "s": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ums": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"1": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}, "docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1.4142135623730951}}, "df": 5, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.schema.ExtractionSchema": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}}, "df": 8, "d": {"docs": {"ums.utils.types": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 2}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 2}, "ums.utils.types": {"tf": 2.23606797749979}, "ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.solution": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.data": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1.7320508075688772}}, "df": 19, "s": {"docs": {"ums.utils.types": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 2}}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1.7320508075688772}, "ums.agent": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 19, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}}, "df": 4}}}}}, "y": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}}, "df": 12}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}}, "df": 3, "t": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1.4142135623730951}}, "df": 6, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ums": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 2.23606797749979}, "ums.utils.types": {"tf": 2}, "ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 3, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.types.AgentResponse.count": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types": {"tf": 2}}, "df": 1, "/": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 1}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ums": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 15, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 12}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentResponse": {"tf": 1}}, "df": 5}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}}, "df": 5}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ums": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ums.utils.types.RiddleSubStatus.finished": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent.agent.BasicAgent.message": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "m": {"docs": {"ums.agent": {"tf": 2}, "ums.utils.request": {"tf": 2.23606797749979}}, "df": 2, "a": {"docs": {}, "df": 0, "y": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}}, "df": 8}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 2.449489742783178}, "ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.request": {"tf": 2}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1.7320508075688772}, "ums.utils.types.AgentResponse": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 14, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 1}, "ums.utils.request": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.request": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.RiddleStatus": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 4.123105625617661}}, "df": 1, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.4142135623730951}}, "df": 4}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 8, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 2}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1.4142135623730951}, "ums.utils.types.AgentResponse.count": {"tf": 1}, "ums.utils.types.AgentResponse.msg": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1}, "ums.utils.types.MessageDbRow.sender": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}, "ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1.4142135623730951}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 18, "s": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.utils.request": {"tf": 2.23606797749979}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 9}, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.request": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent": {"tf": 1.7320508075688772}}, "df": 1}}}, "f": {"docs": {"ums.agent": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums": {"tf": 2}, "ums.agent": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractTextAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.ExtractImageAgent": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent": {"tf": 1.4142135623730951}, "ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1}, "ums.management.db.DB.len": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.schema": {"tf": 1.4142135623730951}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 2.23606797749979}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1.4142135623730951}}, "df": 27}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 2}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1.4142135623730951}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1.4142135623730951}, "ums.utils.const": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleData.file_plain": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 11, "s": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.agent": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1.7320508075688772}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}, "ums.utils.types": {"tf": 2.6457513110645907}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 5}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ums.agent.agent.AgentCapability": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 2}}, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}, "d": {"docs": {"ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"ums.utils.request.RequestException": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 3, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, ":": {"8": {"0": {"0": {"0": {"docs": {"ums": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"0": {"docs": {"ums": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {"ums.agent": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums": {"tf": 1.4142135623730951}, "ums.utils.request": {"tf": 2}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 4, "s": {"docs": {"ums": {"tf": 1.4142135623730951}}, "df": 1}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 3}}}}}}}}, "d": {"docs": {"ums.utils.types.RiddleSubStatus.required": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 2, "d": {"docs": {"ums.utils.types": {"tf": 2}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}, "d": {"docs": {"ums.utils.types.MessageDbRow.time": {"tf": 1}, "ums.utils.types.MessageDbRow.message": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.AgentResponse": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request": {"tf": 1}, "ums.utils.types.MessageDbRow.recipient": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.agent_capability": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent.agent_capability": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.agent_capability": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}, "d": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 2.8284271247461903}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 2.8284271247461903}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1}}, "df": 11, "s": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.AgentResponse": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}}, "df": 4}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 2.23606797749979}, "ums.utils.request": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums": {"tf": 1}, "ums.agent": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "m": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 2.23606797749979}, "ums.agent.agent.BasicAgent.handle": {"tf": 1.4142135623730951}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.agent.agent.GatekeeperAgent.handle": {"tf": 1}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.example.example.MyGatekeeperAgent.handle": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleSolution": {"tf": 1}, "ums.utils.types.Riddle": {"tf": 1}, "ums.utils.types.Riddle.context": {"tf": 1}, "ums.utils.types.Riddle.question": {"tf": 1}, "ums.utils.types.Riddle.solutions_before": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.riddle": {"tf": 1}, "ums.utils.types.AgentMessage.solution": {"tf": 1}, "ums.utils.types.AgentMessage.status": {"tf": 1}}, "df": 22, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleStatus.solve": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 3, "d": {"docs": {"ums.utils.request.RequestException": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.types.MessageDbRow": {"tf": 1}}, "df": 2, "s": {"docs": {"ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "e": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSubStatus.required": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.MessageDbRow.processed": {"tf": 1}}, "df": 10, "x": {"1": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.id": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 3}, "docs": {"ums.utils.types": {"tf": 1.7320508075688772}}, "df": 1, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1.7320508075688772}, "ums.agent": {"tf": 1.4142135623730951}, "ums.utils.request": {"tf": 1.7320508075688772}, "ums.utils.types": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ums": {"tf": 1}}, "df": 1}, ":": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 2}}, "df": 1, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1}}, "df": 10}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent.agent.ExtractAgent": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1}, "ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 3, "s": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {"ums.agent": {"tf": 1.7320508075688772}, "ums.utils.request": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleSubStatus.finished": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.RiddleSolution.explanation": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {"ums.utils.types.AgentMessage": {"tf": 1}}, "df": 1, "v": {"docs": {"ums.agent": {"tf": 1.4142135623730951}}, "df": 1}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"ums.utils.types.RiddleDataType": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ums.agent.agent.BasicAgent": {"tf": 1}, "ums.utils.types.RiddleSubStatus": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 5}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.request.ManagementRequest.send_message": {"tf": 1.4142135623730951}, "ums.utils.types.AgentResponse.error": {"tf": 1}, "ums.utils.types.AgentResponse.error_msg": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"ums.utils.request.RequestException": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.AgentMessage.solution": {"tf": 1}}, "df": 1}}}}}, "v": {"1": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ums": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ums": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 2.23606797749979}}, "df": 1, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.utils.types.RiddleSolution.solution": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}}, "df": 3, "s": {"docs": {"ums.management.db.DB.len": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.MessageDbRow.solution": {"tf": 1.7320508075688772}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"ums.utils.types": {"tf": 1}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleSolution.review": {"tf": 1}}, "df": 3, "d": {"docs": {"ums.utils.types.RiddleData.file_plain": {"tf": 1}, "ums.utils.types.RiddleData.file_extracted": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}}, "df": 2, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"ums.agent": {"tf": 1.4142135623730951}, "ums.agent.agent.BasicAgent.handle": {"tf": 1}, "ums.utils.request": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {"ums": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 2.23606797749979}, "ums.utils.request": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}}, "df": 3}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent": {"tf": 1.4142135623730951}, "ums.utils.types": {"tf": 1.4142135623730951}}, "df": 2}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.request.ManagementRequest.get_message": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}}, "z": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ums.agent": {"tf": 1}, "ums.utils.request": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.AgentMessage.id": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "i": {"docs": {"ums": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}, "ums.agent.agent.BasicAgent.message": {"tf": 1}, "ums.utils.request": {"tf": 1.4142135623730951}, "ums.utils.request.ManagementRequest.get_message": {"tf": 1}, "ums.utils.request.ManagementRequest.list_messages": {"tf": 1}, "ums.utils.request.ManagementRequest.total_messages": {"tf": 1}, "ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.sub_ids": {"tf": 1}, "ums.utils.types.AgentMessage.data": {"tf": 1}}, "df": 9, "s": {"docs": {"ums.agent.agent.BasicAgent.before_response": {"tf": 1}, "ums.example.example.MyExtractTextAgent.before_response": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1}, "ums.utils.types.RiddleSolution.accepted": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.RiddleStatus.solved": {"tf": 1}}, "df": 6}}}}}}}}}, "o": {"docs": {"ums.utils.types.RiddleSubStatus": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ums.agent": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ums": {"tf": 1.7320508075688772}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.agent.agent.ExtractAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAgent.handle": {"tf": 1.7320508075688772}, "ums.agent.agent.ExtractTextAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent.extract_type": {"tf": 1}, "ums.agent.agent.ExtractImageAgent.extract_type": {"tf": 1}, "ums.agent.agent.SolveAgent.handle": {"tf": 1}, "ums.example.example.MyExtractAudioAgent.handle": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractImageAgent.handle": {"tf": 1.7320508075688772}, "ums.example.example.MyExtractTextAgent.handle": {"tf": 1.7320508075688772}, "ums.example.example.MySolveAgent.handle": {"tf": 1}, "ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.schema": {"tf": 1}, "ums.utils.schema.ExtractionSchema": {"tf": 1}, "ums.utils.types": {"tf": 1.7320508075688772}, "ums.utils.types.RiddleInformation": {"tf": 1}, "ums.utils.types.RiddleDataType": {"tf": 1}, "ums.utils.types.RiddleData": {"tf": 1}, "ums.utils.types.RiddleData.type": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}, "ums.utils.types.RiddleSolution.used_data": {"tf": 1}, "ums.utils.types.RiddleStatus.extract": {"tf": 1.4142135623730951}, "ums.utils.types.AgentMessage.data": {"tf": 1}}, "df": 24, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ums.utils.types.MessageDbRow": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"ums.utils.request": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "e": {"docs": {"ums": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent": {"tf": 3.1622776601683795}, "ums.utils.request": {"tf": 1.4142135623730951}}, "df": 2}}}, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.request.ManagementRequest.__init__": {"tf": 1}, "ums.utils.types.RiddleStatus.validate": {"tf": 1}, "ums.utils.types.RiddleStatus.trial": {"tf": 1}, "ums.utils.types.MessageDbRow.solution": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.AgentCapability": {"tf": 1}, "ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.RiddleStatus": {"tf": 1}}, "df": 3}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {"ums.utils.types.MessageDbRow.processed": {"tf": 1.4142135623730951}}, "df": 1}}, "e": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}}, "df": 1, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"2": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1}, "ums.utils.types.RiddleData.prompt": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.types.AgentMessage.contacts": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ums.agent.agent.BasicAgent.sub_riddle": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ums.agent.agent.BasicAgent.handle": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.AgentMessage": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ums.utils.types.AgentMessage.sub_ids": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types.Riddle": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "y": {"docs": {"ums.agent": {"tf": 1.4142135623730951}}, "df": 1}}, "p": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ums.utils.types.RiddleInformation": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {"ums.management.db.DB.len": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ums.agent": {"tf": 1.4142135623730951}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"ums.agent.agent.ExtractTextAgent": {"tf": 1}, "ums.agent.agent.ExtractAudioAgent": {"tf": 1}, "ums.agent.agent.ExtractImageAgent": {"tf": 1}, "ums.agent.agent.SolveAgent": {"tf": 1}, "ums.agent.agent.GatekeeperAgent": {"tf": 1}, "ums.example.example.MyExtractAudioAgent": {"tf": 1}, "ums.example.example.MyExtractImageAgent": {"tf": 1}, "ums.example.example.MyExtractTextAgent": {"tf": 1}, "ums.example.example.MySolveAgent": {"tf": 1}, "ums.example.example.MyGatekeeperAgent": {"tf": 1}}, "df": 10}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.agent": {"tf": 2.23606797749979}, "ums.utils.schema": {"tf": 1}, "ums.utils.types": {"tf": 1}, "ums.utils.types.AgentMessage": {"tf": 1}}, "df": 4}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ums.management.db.DB.len": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "y": {"docs": {"ums.utils.types.MessageDbRow.count": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ums.utils.request": {"tf": 2}, "ums.utils.types": {"tf": 9.591663046625438}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ums.utils.types": {"tf": 1.4142135623730951}, "ums.utils.types.Riddle.question": {"tf": 1}}, "df": 2}}}}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true};
|
|
|
|
// mirrored in build-search-index.js (part 1)
|
|
// Also split on html tags. this is a cheap heuristic, but good enough.
|
|
elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/);
|
|
|
|
let searchIndex;
|
|
if (docs._isPrebuiltIndex) {
|
|
console.info("using precompiled search index");
|
|
searchIndex = elasticlunr.Index.load(docs);
|
|
} else {
|
|
console.time("building search index");
|
|
// mirrored in build-search-index.js (part 2)
|
|
searchIndex = elasticlunr(function () {
|
|
this.pipeline.remove(elasticlunr.stemmer);
|
|
this.pipeline.remove(elasticlunr.stopWordFilter);
|
|
this.addField("qualname");
|
|
this.addField("fullname");
|
|
this.addField("annotation");
|
|
this.addField("default_value");
|
|
this.addField("signature");
|
|
this.addField("bases");
|
|
this.addField("doc");
|
|
this.setRef("fullname");
|
|
});
|
|
for (let doc of docs) {
|
|
searchIndex.addDoc(doc);
|
|
}
|
|
console.timeEnd("building search index");
|
|
}
|
|
|
|
return (term) => searchIndex.search(term, {
|
|
fields: {
|
|
qualname: {boost: 4},
|
|
fullname: {boost: 2},
|
|
annotation: {boost: 2},
|
|
default_value: {boost: 2},
|
|
signature: {boost: 2},
|
|
bases: {boost: 2},
|
|
doc: {boost: 1},
|
|
},
|
|
expand: true
|
|
});
|
|
})(); |